Blog post menus
- The topic ‘Blog post menus’ is closed to new replies.
Need help? Check out our Support site, then
On the Romero theme the blog posts are narrower than the post due to the ‘next / previous post’ options on the right hand side – how do I remove the ‘next / previous post’ options to make a blog post as wide as a page post?
(Without having to make CSS changes).
The blog I need help with is: (visible only to logged in users)
Hi – most customizations on WordPress.com require CSS changes. Since you have a business account the wordpress.com team may help make these changes for you. I don’t have access to your site since I am not a WordPress.com employee.
The CSS you need to make these changes is:
.sidebar.sidebar-main {
float: none;
width: 100%;
padding: 0;
}
.main .article {
float: none;
width: 100%;
margin-bottom: 2rem;
}
Thanks – Ben