Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CSS remove link decoration

Status
Not open for further replies.

Dashsa

Programmer
Aug 7, 2006
110
US
Hello I have a div inside a div that I want to remove the blue color and underline from a link.
the HTML is:
Code:
<div id="renovate_Wiebe">
	<div id="renovate_Menu">
<b>RENOVATIONS</b><br>
<br>
Port Royal Residence<br>
<br>
<a href="remodel_Wiebe.html">Harbourtown Townhouse</a><br>
<br>
<a href="remodel_Art.html">Artist’s studio</a><br>

The CSS for the divs are
{code]
#renovate_Wiebe{
background-color:#669999;
width:963px;
}
#renovate_Menu {
font-family:Arial, Helvetica, sans-serif;
color:#FFFFFF;
padding-left:40px;
padding-top:40px;
background-color:#669999;
float:left;
width:235px;
height:327px;
border:none;
text-decoration:none;
font-size: 18px;
}
[/code]

The font size works but the "text-decoration:none" is not working.
any ideas?

thanks
 
Thanks for looking but nevermind I got it,
I added this:

Code:
#renovate_Wiebe{
background-color:#669999;
width:963px;
text-decoration:none;
color:#FFF;
}
[red]#renovate_Wiebe a{
background-color:#669999;
width:963px;
text-decoration:none;
color:#FFF;
}[/red]
#renovate_Menu {
font-family:Arial, Helvetica, sans-serif;
padding-left:40px;
padding-top:40px;
background-color:#669999;
float:left;
width:235px;
height:327px;
font-size: 14px;
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top