how do i remove the black tiny border?
its on the left top and bottom of the broken windows vista logo
border: 0;
border: 0;
didnt work
it didnt work
#top //this is a div...its the whole part on top where the logo and phone number is
{
height: 130px;
width: 100%;
background-image: url('topbg.jpg'); //this background is a gradient i think
border:0; // its causing the border, not sure.
}
#top #logo // #logo is the id of the image tag which holds a .png image,
{ // the image is a broken vista icon..
border:0; //
width: 348px;
height:124px;
}
Please read the posting
Please read the posting guidelines.
Deuce wrote: border:
border: 0;
That's not right. If you want to remove a border from an element you should use "border:none;". See http://www.htmlhelp.com/reference/css/box/border.html
I wouldn't use the term
I wouldn't say that...
0 sets the width. None sets the style. Both are valid for making a border disappear.

