I want to edit the position and the color of the view count in posts

Posted in: Newspaper
Post count: 7

Currently, the view count is displaying beside the eye icon at the right side of my post page, in line with the post date which is shown at the left. I want the view count immediately at the right side of the date, and both the eye icon and the count number in my theme color (#ef5742). I hope I make myself clear. Please help me do this.

Post count: 20688

Hi,

You could try a code like this one
https://www.screencast.com/t/RiAV4ZyKYB
It must be entered in Theme panel->Custom CSS section, and it will apply to all your posts

.single header .td-post-views{
float: left;
margin-left: 5px;
color: #ef5742;
}

Thanks

Post count: 7

Thank you! It was just what I need it.

Additionally, I’d like to have the view count beside the date everywhere the posts’ dates appear (i.e. in the blocks, the categories’ pages, in the search results, and everywhere a post date appears). Please help me with this issue. I appreciate your help very much.

Post count: 20688

Hi,

The view count is not displayed in the blocks and modules. The modules only display the author name, date and comment count. If you mean the comment count, try this code
https://www.screencast.com/t/ErV2Ar9Se

The code will apply to all the modules on the website, enter it in Theme panel->Custom CSS

.td-module-comments {
float:none;
display: inline-block;
}

Thanks

Post count: 1341

@oscarfabra – also try this solution:
View Numbers in Blockhttps://forum.tagdiv.com/topic/view-numbers-in-block/

Post count: 7

I mean the view count, but I prefer not to edit the website files for now. Thank you very much.

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.