Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts

Wednesday, 5 February 2014

Remove Underline from link


Put this in head tag


<style type="text/css"> 

a {
text-decoration: none 

</style> 

Put this in body tag 


<div> 
<asp:Label ID="lb" runat="server" ForeColor="#6699FF" ></asp:Label> <a href="pagename.aspx" style="text-decoration: none; ">logout</a> 
</div>

Sunday, 2 February 2014

Background Fixed Css

Put this code in side of your css

body
{
margin:0px 0px 0px 0px;
background-image:url(images/bg.jpg);
background-repeat:repeat-x;

}

Remove List Style

<div> 
<ul> 

<li style="list-style-type:none ">A</li> 
<li style="list-style-type:none">B</li> 

</ul> 

</div>