My menu covers the side black page border in firefox, but not in explorer. is their any way to adjust this, so the black vertical line of the page shows to the left like it does to the right of the menu?
[attachment deleted by admin]
Menu help with css horiz?
Menu help with css horiz?
Last edited by duplay on Thu Jul 27, 2006 3:26 pm, edited 1 time in total.
Re: How do I move my CSS Horiz menu to the right a bit?
without checking your code I would say
Code: Select all
ul#primary-nav {
margin-left:10px;
}
Re: Side of menu overlaps page in firefox.
I have made the changes stated above, and all looks good. However, I have a small space added to the top of the horiz menu (you can see it right above the darker grey rollover color of the page you are currently on. Is their a adjustment to get rid of this? Make the grey rollover bigger perhaps?
[attachment deleted by admin]
[attachment deleted by admin]
Re: Menu help with css horiz?
would be better to give url so we can check what your code has (or lacks ;)
Re: Menu help with css horiz?
You have:
change it to:
hope this helps
Code: Select all
#primary-nav, #primary-nav ul {
list-style: none;
margin: 1px;
padding: 0px;
}
Code: Select all
#primary-nav, #primary-nav ul {
list-style: none;
margin:0;
margin-left: 1px;
padding: 0px;
}
Re: Menu help with css horiz?
SWEET! that did it! thanks for the help!