Home › Forums › Gillion Theme › Shufflehound post tabs (display only popular tab)
Home › Forums › Gillion Theme › Shufflehound post tabs (display only popular tab)
Solution for this topic
Hi @hife2017,
Thank you for your question.
You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.widget_posts_tabs .tab-content .tab-pane:first-child,
.widget_posts_tabs .nav-tabs li:first-child {
display: none;
}
#page-container .widget_posts_tabs .nav-tabs li:last-child h3 {
color: #505050 !important;
}
.widget_posts_tabs .tab-content .tab-pane:last-child{
display: block;
}
Best regards,
Shufflehound team
Solution for this topic
You can delete the strikethrough on “Popular” word using below CSS code.
.widget_posts_tabs .widget-tab-title:after {
display: none;
}Perfect it works, thank you!
You are always welcome here 🙂