Hi,
How can I customize the More article box for the following things.
1. To make the thumbnail smaller.
2. To put background color on it (it’s white now)
3. If possible to make only post title to appear.
4. To make make More article box get latest post from specific category.
Thank you!
Hello Marto,
1)Please notice that all the settings which are available for this type of feature you can find in your theme panel->Post Settings, like this -> http://screencast.com/t/cZzhikbPMH4 Also, you can change from there what type of module you want. If you are not satisfied with these options, please notice that you will have to alter the code from td_more_article_box.php core file and add your desired option.
2)The theme does not have such an option to change the background color but only through custom CSS code. Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-more-articles-box {
background-color: red!important;
}
The result you should see here -> http://screencast.com/t/cJbNLszV53
3)You will have to use the module 8 from the panel, like this -> http://screencast.com/t/F1uMuwTg7JBm and the results you should see here -> http://screencast.com/t/dmsQObpz
4)Unfortunately, our theme does not have such an option for our More Article box. If you want to change this, please try to develop our feature from this file, like this -> http://screencast.com/t/upROh1bIiu
Please notice that you want to display more levels in our theme and you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you because we cannot provide customization services at the moment, sorry!
For more information about this type of feature, please check our documentation here -> https://forum.tagdiv.com/more-articles-box/
Thanks for your understanding!
Hello Marto,
Please notice that you will simply add your hex color instead of red value. If you want to change the color for your Post title in this feature, please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-content-more-articles-box h3 > a {
color:red!important;
}
.td-more-articles-box-title {
display:none;
}
The result you should see here -> http://screencast.com/t/rmK6eaPTBCGp
Thanks.