Search This Blog

Showing posts with label Web Techniques. Show all posts
Showing posts with label Web Techniques. Show all posts

Wednesday, August 1, 2012

Rounded Corners Gap issue


Welcome to designers blog Here i have posted how to  fix rounded corner images when it shows gap in  zoom out

Screenshot :




Align:

 Align the  images to the right and top and if u call the images  in css  give

 background: url(../images/left_bg.png) repeat-y top  right ;

<td width="1%"  align="right" valign="top"><img src="images/top_left.png" width="13" height="8" /></td>

<td  align="right" valign="top" width="1%"><img src="images/bottom_left.png" width="13" height="8" /></td>

Css:

.left_bg
{
    margin:0px;
    padding:0px;
    background: url(../images/left_bg.png) repeat-y top  right ;

}

Thursday, February 2, 2012

how to disable right click on webpage

if u dont want to have right click on your webpage just add oncontextmenu="return false"  on your body
Tag

Example:

              <body oncontextmenu="return false">

and u can also add for individual tags too

<a href="http://www.designersdairy.com" oncontextmenu="return false">Designers Dairy</a>

Validating to select in sequencial order using angular

    < input type = "checkbox" (change) = "handleSelectTaskItem($event, taskItem)" [checked] = " taskItem . i...