I want to move my navigation menu to below my header picture. I have CSS, but am very new to it and don't know how to use it yet. Thanks so much!
The blog I need help with is andovercschurch.org.
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
I want to move my navigation menu to below my header picture. I have CSS, but am very new to it and don't know how to use it yet. Thanks so much!
The blog I need help with is andovercschurch.org.
Here is an example that will move the main menu in the Coraline theme below the header image. It also hides page titles since they look a little repetitive when the menu is moved down next to them like that.
Try adding this to your Appearance → Custom Design → CSS editor:
#header {
position: relative;
}
#access {
position: absolute;
border-top: none;
bottom: -22px;
}
.page .entry-title {
display: none;
}
#content-container {
padding-top: 20px;
}
This topic has been closed to new replies.