tags:

views:

824

answers:

2
+4  A: 

If you have a border on that right, you just can't eliminate that part of the border.

However, you're in luck. Try using margin-right: -1px; in your CSS. This will drag the

element to the right 1 pixel, and hopefully over the border. You may need to also set

position: relative;
z-index: 100;

Also, because it's over to the right 1 pixel, to make it align on the left with the others, you may need to make the active element 1 pixel wider.

alex
I agree. I think this is the ideal solution.
Zack Mulgrew
Worked great, thanks!!!
Jess
Glad it did!
alex
A: 

Alex's solution should work, but another way to do it would be to remove the border-left CSS atrtribute from #Content and instead use a 1 pixel wide gray GIF or PNG image on the DIV containing the submenu items.

Like this:

#SubMenu { background: url(grayline.gif) #CCCCCC top right; }

That would remove the need to worry about the selected submenu element not being aligned.