Just one problem i need help to…
-
I dont want the categories under each post, but when i use this code:
.entry-meta {
display: none;
}But then the Time, name and date also is gone. I wish still have that.
The page is http://superjanne.no
The blog I need help with is: (visible only to logged in users)
-
Hi @superjanne, it looks like you are using WordPress but you are not hosted here at WordPress.com. For self-hosted WordPress sites such as yours, I would suggest asking for help from the theme author directly or ask in the volunteer-based WordPress.org Themes and Templates forum.
For general questions on self-hosted WordPress.org installations, visit http://wordpress.org/support/.
The differences between WordPress.com and WordPress.org.
I did take a quick look at your site, and the categories at the bottom of the posts are in a div with a class of .entry-footer and the category stuff is inside that with a class of .cat-links, so you can do something like this.
.entry-footer .cat-links { display: none; } .entry-footer { border-top: none; }The top rule hides the cat links and the second removes the top border from the .entry-footer div and leaves the thicker bottom border line to separate the posts.
- The topic ‘Just one problem i need help to…’ is closed to new replies.