Navigation arrows
-
Hi – I would like to put the navigation arrows on my blog inside the menu bar at the top of my blog. At the moment they are on the background image I am using. Is this possible? Many thanks Fred
-
Howdy,
This is a pretty advanced customization due to the placement of the navigation in the markup. You can try this CSS to move the navigation to the top part of the site:
#primary .site-navigation {
position: fixed;
top: 80px;
max-width: 100%;
}You may need to adjust the “top” value to move it where you want. Then you can increase the height of the header area to accommodate the navigation:
.not-home .site-header,
.site-nav {
height: 100px;
}But this will limit your site’s visible area on small screens/mobile devices. I honestly wouldn’t recommend it. :)
If you have further questions, most of our CSS support is done in our community forums by both staff and volunteers:
https://en.forums.wordpress.com/forum/css-customizationWhen you create a CSS-related help request, please make sure to select or link to the WordPress.com blog you’re working on and include a clear description of the change you’re trying to make. It really helps.
To learn more about how CSS editing works at WordPress.com, see this help page:
http://en.support.wordpress.com/custom-design/editing-css/If you need to hire a consultant to help you with in-depth design work or large CSS revisions, please consider getting a quote from WerkPress:
http://en.support.wordpress.com/customize-my-site/request-theme-customization/Cheers,
Caroline -
-
Howdy Fred,
Sorry I couldn’t be of more help! But if you have further questions, please don’t hesitate to let us know.
Cheers,
Caroline
- The topic ‘Navigation arrows’ is closed to new replies.