Header on resizing not 100% anymore

ShadyNova

New Member
What I got is this code of CSS:\[code\]#menu_top{margin: 0;position:fixed;background: #4d4d4d;width: 100%;height: 90px;border-bottom: 1px solid #000;}\[/code\]and this for javascript:\[code\]$(window).scroll(function(){ $('#menu_top').css('left',-$(window).scrollLeft());}); \[/code\]But when I resize my window, to a very small Dimension the header isn't 100% of width anymore. It is not completely filling everything when scrolling to right.So how can I do a complete window filling 100% even on resizing?
 
Back
Top