main nav menu

QuestionsCategory: Questionsmain nav menu
Kate Groag-hovord asked 5 years ago

Hi is it possible to stop the header following on scrolling? thanks

1 Answers
Jennifer Staff answered 5 years ago

Yes. The easy way is to remove the fixed property from the site header. Go to line 2176 and change this

.site-header.light {
background: #fff;
height: 125px;
position: fixed;
top: 0;
}

to this

.site-header.light {
background: #fff;
height: 125px;
position: unset !important;
top: 0;
}

Kate Groag-hovord replied 5 years ago

perfect… xx