Hi Support,
Please this is my website.
1. how do i hide the whole modules from showing, Date, Author, except just only one
2. which file will i edit to change the whole site font and size
3. How do i extend the background color on the Module Tile to full instead of just half way
Hello,
1) You can hide the meta data from blocks from the theme panel: https://www.screencast.com/t/lJ4UiFiYO4
2) Unfortunately our theme does not have a setting to change the font for all the elements at once. There is a workaround if you do not want to change all of the fonts from the fonts section: https://forum.tagdiv.com/topic/do-i-really-need-to-change-all-the-text-fields-for-fonts/
3) In order to do that, you will have to change the block header style: https://www.screencast.com/t/QmIqQaNLoP
Thank you!
Well when you disabled the meta data, you disabled each individual element including the date. Please enable just the date option: https://www.screencast.com/t/ZJiia4c5a
Thanks
Hi,
Unfortunately the theme does not have meta data control for the mobile version in particular. These elements are enabled or disabled for all versions of the site at once.
If you need to only activate the data on mobile, you will have to enable it and then hide it on desktop and tablets using css.
Enable the date from the theme panel and then use this css in the theme panel->custom css box:
@media(min-width:767px){
.td-post-date, .td-post-author-name span{
display:none;
}}
Thank you!