Hi, currently I have a logo set to float to the left and the menu bar to float to the right(layout.css), the problem is when the windows is resized below a certain resolution the menubar overlaps the logo (ends up underneath it). How can I set a certain minimum/maximum resolution for the page? so the fluid logo and menubar dont intersect?
Thanks Dovydas
This is known as a semi-liquid layout. Adjust widths as needed.
#container {
width: 100%;
min-width: 980px;
max-width: 1400px;
}
Nancy O.
so i need to place all of my header content in a container and then in css write that?
Thank you very much! worked perfectly