Page 1 of 1
Menu help with css horiz?
Posted: Wed Jul 26, 2006 7:25 pm
by duplay
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]
Re: How do I move my CSS Horiz menu to the right a bit?
Posted: Wed Jul 26, 2006 7:56 pm
by tsw
without checking your code I would say
Code: Select all
ul#primary-nav {
margin-left:10px;
}
Re: Side of menu overlaps page in firefox.
Posted: Thu Jul 27, 2006 12:53 pm
by duplay
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]
Re: Menu help with css horiz?
Posted: Thu Jul 27, 2006 3:31 pm
by tsw
would be better to give url so we can check what your code has (or lacks ;)
Re: Menu help with css horiz?
Posted: Thu Jul 27, 2006 3:34 pm
by duplay
Re: Menu help with css horiz?
Posted: Thu Jul 27, 2006 4:10 pm
by tsw
You have:
Code: Select all
#primary-nav, #primary-nav ul {
list-style: none;
margin: 1px;
padding: 0px;
}
change it to:
Code: Select all
#primary-nav, #primary-nav ul {
list-style: none;
margin:0;
margin-left: 1px;
padding: 0px;
}
hope this helps
Re: Menu help with css horiz?
Posted: Thu Jul 27, 2006 5:03 pm
by duplay
SWEET! that did it! thanks for the help!