how to hide title of widget in dw focus – http://prntscr.com/8lockh
1 Answers
Hi,
If you want to hide the title of widget in the DW Focus, you can add the following code to the style.css file:
.widget .widget-title a { display: none;}
.widget .widget-title { padding: 18px 0;}
Hope this helps !
Not Working I want to hide title of Widgets – http://prntscr.com/8m3yuh
Which widget are you mentioning here? you can send me your site for further checking.
Archieve widget i want to place it on header
You can use the following code:
#header-widgets .widget_archive .widget-title {
display: none;
}
Also, I have checked Archive widget on our demo with title is empty and it work fine, you can try and then let us know if it work.
In case, you want hide the title but still show the border on the top of widget, you can use the following code:
#header-widgets .widget_archive .widget-title {
text-indent: -99999px;
}
Hope this helps !
Please login or Register to submit your answer