I have designed a website and am a little bit stumped right now.
If you view the website at:
http://www.noxinnovations.com/portfolio/charidimos/
If you change the size of the window you will notice the Navigation overlaps the logo/header.
Anyway to change this? What I want to do virtually is to make the window have a scroll bar appear if that is possible.
Any ideas?
Thank you :-D.
If you want your navigation not to overlap, you can do the following
It's your
width: 100%;
in your#header
element that's causing your strange overflow behavior. Place your#logo
and#navigation
elements inside of anotherdiv
with a fixed height and width that sits inside of the#header
, then give your#header
the propertyoverflow: hidden;
and that should fix you right up.