1. How can I choose individual articles to feature in my Big Grid 3?
2. How do I remove the date from underneath the article title in Big Grid 3?
3. How do I remove the ‘zoom in’ when you hover over a picture in Big Grid 3?
4. How do I change the font style for “MUST WATCH” on my video playlist?
5. How do I remove the list of categories in Block 1? https://snag.gy/60WnGo.jpg
majorfuss.com
Hello majorfuss,
1)Unfortunately, our theme does not have any such an option that allows you to manually change the articles from Big Grid feature, sorry! All of these can be done only automatically.
2)There’s an option for it in Theme panel, like here -> https://www.screencast.com/t/pruIImQKreqs
3)Check this option from here -> https://www.screencast.com/t/gCEnN3c6ZHx
4)Provide your website URL so I can take a closer look at it and also, so I will be able to provide a more accurate response/code.
5)Here is talking about Ajax Filter which can be disabled from Settings, like this -> https://forum.tagdiv.com/block-settings-guide/
Hope this helps!
Thanks for your understanding!
2. Is there a way of removing the date from Big Grid 3 only? I want the date showing on my other blocks.
3. I turned this off, but the pictures still ‘zoom in’?
-
This reply was modified 8 years by
majorfuss.
Hi,
2)Try the code below and place it in Theme panel -> Custom CSS area.
The code is ->
.td_block_big_grid_3 .td-module-meta-info{
display:none;
}
3)Clear all the caches and check the results.
4)Use the code below ->
.td_video_playlist_title .td_video_title_text{
font-family:Arial!important;
}
Notice that the font family used in this custom CSS should have to be loaded in your theme from Theme panel because if it will not be, the font will do not be applied.
Thanks for the message!
Sorry, one more question along with the two questions above.
4. On Block 1, I added a black Block Header 4 template for the Custom Title. But now when I hover over the article titles in the block, they are also black instead of my theme accent colour. How can I change the article titles’ hover colour from black to my theme accent colour? https://snag.gy/NMwOUt.jpg
Hello majorfuss,
2)Try to add the important tag in front of property, like below ->
.td_block_big_grid_3 .td-module-meta-info{
display:none;
}
3)I have tested on my site to turn off this setting -> https://www.screencast.com/t/0HTEXaBp and the zoom image for Big Grid are stopped. I guess that you are referring to this effect.
4)Also, if you want to change the hover color of your post title, you should try using the following code below ->
.td_module_wrap:hover .entry-title a{
color:red!important;
}
Thanks for your understanding!