html - Positioning fixed header -


this tricky one, me @ least. have page needs scroll horizontally. @ top of page menu needs stay in same place whole time centered on page. if use jq unsure how achieve appears need position same div 2 different ways.

here page:

http://www.coflash.com/testing/raycollins/gall1.php

the scrollbar not appearing reason either, works fine in old code on site:

http://www.raycollinsphoto.com

any ideas?

for scroll add in body overflow-x:scroll; show horizontal scroll bar.

about header can use position:fixed; , width:100% , z-index:10; final css #headerwrap be:

#headwrap {     background-color: #1c1c1c;     position: fixed;     width: 100%; /* take width of screen */     z-index: 10; /* in small screens images override header */ } 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -