impossible to remove border? (CSS problem)

impossible to remove border? (CSS problem)

am 16.05.2007 19:10:51 von blessblessbless

hello,
I am currently working on
http://bjorntoday.com/
in specific the part











>



thats the navigation under the banner

ass you see when moving the cursor over the cells the background
changes via hover, but theres a 1 px border around them I cant get
away.
you can move the cursor between the buttons and no hover effect will
happen.
+ i want the image to attach to the red border on the top

heres my desperate attempt to get rid of that tiny border

#underban{
height:26px;
background-color: #000000;
margin:0px;padding:0px;

}
#underban table {
margin:0px;
padding:0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
#underban td {height:26px; font-size:13px;text-align:center;width:
145px;vertical-align:top;margin:0px; }
#underban td:hover {background-image: url(images/butt.png);}

and its still there...
anybody have a solution?
thanks
mawk

Re: impossible to remove border? (CSS problem)

am 16.05.2007 19:36:40 von Ben C

On 2007-05-16, Mohawk Mawk wrote:
> hello,
> I am currently working on
> http://bjorntoday.com/
> in specific the part
>
>


>
>
>
>
>
>
>
>
>

>>

>

>
> thats the navigation under the banner
>
> ass you see when moving the cursor over the cells the background
> changes via hover, but theres a 1 px border around them I cant get
> away.
> you can move the cursor between the buttons and no hover effect will
> happen.
> + i want the image to attach to the red border on the top
>
> heres my desperate attempt to get rid of that tiny border
[...]
> and its still there...
> anybody have a solution?

Change to

Re: impossible to remove border? (CSS problem)

am 17.05.2007 07:27:40 von blessblessbless

thank you, that worked like a charm