hiding archive and meta menu
- The topic ‘hiding archive and meta menu’ is closed to new replies.
Need help? Check out our Support site, then
Hello,
Is there a way to hide the archive and meta menus? Also is there a way to get rid of the text that appears at the bottom of the sidebar? ‘Create a free website or blog at WordPress.com. The Oslo Theme.’
Thanks heaps,
Steph
The blog I need help with is: (visible only to logged in users)
Hey Steph!
If you have the custom design upgrade, you should be able to add this CSS to hide the site credits:
.site-credits {
display: none;
}
For the Archive/Meta menus, you can adjust these in your Widgets settings, and remove them from there!
Hope that helps,
Hi Calvin, thank you!
I’ve got one more for you :)
How do I get rid of this under each post:
Published: . . . (updated: . . .)
Filed under: Uncategorized
Thanks again,
Steph
Sorry that was me but in my friend’s account that I’m trying to fix up – its for this website http://daspatterson.net
thanks,
s
Hey!
Sure, we can add a little more custom CSS to hide that:
footer.entry-meta {
display: none !important;
}
Hope that helps!