Can I use CSS to get rid of the "Category Arcive:" text in the header of my WordPress.com blogs?
The blog I need help with is motorcyclemommablog.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
Can I use CSS to get rid of the "Category Arcive:" text in the header of my WordPress.com blogs?
The blog I need help with is motorcyclemommablog.wordpress.com.
Here's one possible solution. Try adding it to your Appearance → Custom Design → CSS editor:
.page-title {
visibility: hidden;
margin-top: -34px;;
}
.page-title span {
visibility: visible;
float: left;
}
.taxonomy-description {
clear: both;
}
This topic has been closed to new replies.