I only want 1 page for my blog and the theme I'm using has a default of two pages. how do i hide that top header all together?
I do not want "Home" to be visible.
Thanks!!!
The blog I need help with is msmeganmills.wordpress.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
I only want 1 page for my blog and the theme I'm using has a default of two pages. how do i hide that top header all together?
I do not want "Home" to be visible.
Thanks!!!
The blog I need help with is msmeganmills.wordpress.com.
add this to your CSS
.main-navigation {
display: none;
}
; )
Thank you! Do you know how I would removed the date on the left of each post?
This should do it:
.entry-meta .posted-on {
display: none;
}
thank you! worked like charm.
do you know how to remove "by (author)"?
For the Minimalzine theme, you can use:
.posted-by {
display: none;
}
thank you :)
This topic has been closed to new replies.