Hi,
You can search for that class in the theme stylesheet, if that is what you want. There are references to it for each post template
– https://www.screencast.com/t/TcgXX4aoP0
Thanks
Hi,
I might have misunderstood what you wanted. If you want to remove the post views from the post template itself, edit the post template file. This is the file corresponding to the default post template, and the line of code that displays the post views
– https://www.screencast.com/t/YB0KSlnfU5L
In the stylesheet there is a reference to the post views for the default post template here if that would be useful to you
– https://www.screencast.com/t/Q9QjWzzFm9
Thanks
I have an issue with some images overstretching on mobile devices eg –
https://www.kenyans.co.ke/news/23419-jubilee-party-speaks-iebc-chairman-wafula-chebukatis-resignation
https://kenyannews.co.ke/news/nasa-supporters-block-city-roads
yet i have implemented this code under custom code – custome css —
.single .article-image {
width: 100% !important;
}
Hi,
There seems to be an inline width property for the image, in the post you provided
– https://www.screencast.com/t/QpwR4BbHjS
That fixed width is overriding any other styles and conditions. You could inspect the post content and see if you can find that value there
– https://www.screencast.com/t/5Cm8QyUEIy7S
Or maybe it is added by a plugin, cannot say for sure. It could be removed by setting the normal width, something like this
– https://www.screencast.com/t/UlpFXqx2J0
.td-post-content .caption-width-container {
width: 100% !important;
}
Thanks
Am using this on custom css:
.td_block_9 .td_module_8 {
padding-bottom: 0;
margin-bottom: 0;
}
.td_block_17 .td_module_8 {
padding-bottom: 0;
margin-bottom: 0;
}
I have tried to implement this on style.css so as the style can be loading directly from the main source. Under style.css, i have done the changes on module 8 and block 9 and 17 and didn’t work on my end.
I would appreciate any help to implement the change on the main folder.
I have been waiting for that answer for long then u come up with a vague answer, how does that relate with my previous question.
lemmi point out once more;
Am using this on custom css:
.td_block_9 .td_module_8 {
padding-bottom: 0;
margin-bottom: 0;
}
.td_block_17 .td_module_8 {
padding-bottom: 0;
margin-bottom: 0;
}
I have tried to implement this on style.css so as the style can be loading directly from the main source. Under style.css, i have done the changes on module 8 and block 9 and 17 and didn’t work on my end.
I would appreciate any help to implement the change on the main folder.”
That code am using is to remove the spacing on block 9 and 17 if not wrong, i did not need the spacing between titles.
I need to implement these on the default file. Hope u get me.
In order to not have this situation again, please structure all your questions and issues in separate topics. From now on, please create a new topic for each question in particular so we can track each and every question separately.
I understand the issue now. Please try to add the !important tag to your code:
td_block_9 .td_module_8 {
padding-bottom: 0!important;
margin-bottom: 0!important;
}
.td_block_17 .td_module_8 {
padding-bottom: 0!important;
margin-bottom: 0!important;
}
And then add it at the bottom of style.css
If it still does not work, please contact us via email at contact@tagdiv.com and provide wp-admin and ftp access so we can login and investiogate
Thanks.
Hi.
I also want very much to use popular posts without showing the number of views to each post and without any additional plugin. In fact, I used “popular post for wp” plugin with my previous theme, but from now on with NEWSPAPER I want to keep only the pluggins that are necessary (adrotate, Wp Super Cache etc).
I tried your method to live css
.single .td-post-views {
display: none;
}
but the post views don’t disappear. (I also enabled AJAX POST VIEW COUNT since I use WP Super Cache).
Any advice?
(www.tameteora.gr)
Hello,
There are no post views shown on your posts. Please provide an example of what post views you mention.
Maybe you mean the comment count: https://www.screencast.com/t/X3WzppxTTMBH
All of the post or block metas can be removed for posts from here: https://www.screencast.com/t/JMKyPzWrL
and for blocks from here:https://forum.tagdiv.com/meta-info-modules-blocks/
Thanks.
Hello.
I have disabled the post views, because I don’t want them to show.
I just tried your method to live css
.single .td-post-views {
display: none;
}
that I read above to these topic that makes post views (when enabled) disappear, but it didn’t work (I also enabled AJAX POST VIEW COUNT since I use WP Super Cache).
I just want very much to use popular posts without showing the number of views to each post and without any additional plugin.
Hi,
That code works properly, I tested it as well.
Without code – https://www.screencast.com/t/HU6wJ5s706
With code added – https://www.screencast.com/t/har5K9wl
Hiding the post views with CSS will allow the popular posts sorting to work, the views will still be counted. Enter the cod, enable the ajax view count and then clear the cache as specified
– https://forum.tagdiv.com/ajax-view-count/
Thanks
Hi,
Enable it and then hide the view count if you don’t want it to be visible, with that code. The counting process will still work in the background, the icon will simply not be visible.
That code should work, enter it in the theme panel custom CSS code and if it does not work, provide a link to a post and I will take a look.