- This topic has 1 reply, 2 voices, and was last updated 5 years, 4 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Aspire Theme Support › How to remove sticky header?
Tagged: Aspire sticky header
HI Wes,
How can I remove the sticky header? I need fixed header to my site https://www.psoriasistreatmentbangalore.com
kindly help
Take a look for this on line 1174 in your style.css –
.site-header {
background-color: #000;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 999;
}
You can remove/adjust the transparent background on line 1197 –
.featured-section .site-header {
background-color: transparent;
border: none;
}
You can adjust the padding-top on line 1193 if you want to remove the space at the top –
.front-page .site-header {
border-bottom: 1px solid #ddd;
padding-top: 30px;
}