css - How to fix a floating menu in Wordpress? -


i'm launching website on friday , having issue top menu floating - rather fixed @ top - reasons beyond me.

unfortunately, can see bit of header photo in between top of menu , top of page on desktop.

here's url , i've included image below: http://cricketyorks.staging.wpengine.com

any code suggestions have can add custom css in back-end of wordpress fix appreciated.

it must i've tweaked in past because theme (arcade) has fixed top menu normally. - , on you!

homepage screenshot

you using css nav

nav#site-navigation {     position: absolute; } 

with position:absolute can set position of element anywhere on page cannot fixed position fixing position need change css position:fixed this

nav#site-navigation {     position: fixed; } 

Comments