PDA

View Full Version : I am having problems with deleting borders in CSS


trixy
01-12-2006, 01:46 PM
Because al my pages must be valid with XHTML strict.dtd i cant type in my xhtml <div id="Portfolio-site-11_"> <a href="Multimedia.html"><img src="images/Portfolio-site_11.gif" border="0" id="Portfolio_site_11"/></a> </div>
I must delet it in my css but When I type#Portfolio-site-09_ {
position:absolute;
left:28px;
top:208px;
width:226px;
height:25px;
border-style:none;
border:0;
nothing happens

http://www.samgoetmaeker.be

zro@rtv
01-12-2006, 02:24 PM
this should work
a img {
border:0;
}

also, menu should be a list, and i'd suggest using some image repacement technique rather than useing the images as the link...

trixy
01-12-2006, 02:37 PM
thnx very much