Menu bar 100% width

I have a menu bar here: --- Now, when you resize the window (so the horizontal scrollbar appears), and you scroll to the right, the background disappears! How can I solve this problem?

+3
source share
2 answers

@kevin; maybe you need to define min-widthfor your menu bar.

, eg

.menu{
min-width:1200px;
width:1300px;
}

for more: Minimum width when resizing a window

http://friendlybit.com/css/min-width-and-max-width-template/

+2
source

You must wrap everything in a new one divand apply to it min-width: 960px.

<div id="container" style="min-width:960px">
    <div id="ovoMenu"> 
        ..
    </div> 
    <div id="ovoSubmenu"> 
        ..
    </div>
</div>

You can just install min-widthon body, but I'm not sure what else will do on this page.

+2

All Articles