Categories on post

Posted in: Newspaper
Post count: 28

Hi,

1. Currently when viewing a single post the meta data of date, author, number of views and comments are put to the right of the same line the categories are on.

When we have a post with too many categories, it moves all this meta data to the extreme right and the layout looks bad.

I would like to put the categories on their own separate line under the meta data to prevent this layout issue.

2. How do I set the font and colours of the meta data of author, date, number of views, comments as they are pretty hard to see in the current font and can’t see where to change them in theme panel.

Many thanks

Craig

Post count: 6600

Hi,

Move the get_category() function like this: http://screencast.com/t/WSUECFCQk ..in the post template you want to make this changes, this example is for the post template #2 but you can do the same for the other.
You also need this custom css to adjust it, use this to customize the font and color: http://screencast.com/t/qVhOzyhqJ

.meta-info {
clear: left;
padding-top: 20px;
font-family: 'Sacramento', sans-serif !important;
color: #000000 !important; 
font-size: 30px !important; 
}

.meta-info .td-block-author a {
font-family: 'Sacramento', sans-serif !important;
color: #000000 !important; 
font-size: 30px !important; 
}

.meta-info .entry-comments-views {
font-family: 'Sacramento', sans-serif !important;
color: #000000 !important; 
font-size: 30px !important; 
}

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.