Hi,
I am just wondering if there is a way to make the menu remain at the top of the page, even if the person scrolls down to the bottom of the page? Hope that makes sense. Thanks :)
The blog I need help with is oceansidehospice.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Hi,
I am just wondering if there is a way to make the menu remain at the top of the page, even if the person scrolls down to the bottom of the page? Hope that makes sense. Thanks :)
The blog I need help with is oceansidehospice.com.
Yes. You can use fixed positioning for that. Here is a basic example you can start with:
#access {
position: fixed;
top: 0;
left: 0;
z-index: 99;
}
.logged-in #access {
top: 28px;
}
This topic has been closed to new replies.