html - Absolutely positioned logo in header scrolls with page -


i have absolutely positioned logo in header bar of page, keeps moving down page when scrolled.

i do not want behavior, want logo stick top of page , not cover other elements when visitor scrolling down page.

here page in question.

www.giracci.com

and header logo code.

logowrapper {     float: left;     height: 0;     position: absolute;     top: 0;     width: 150px;     z-index: 30; } 

if view page, you'll see doesn't stay put, scrolls page.

add css file: no need change of code. navbar adding fixed class when scrolled.

nav.fixed .logowrapper {     display: none; } 

Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -