Hi, can you please tell me how I can change or remove the little folder and page icons next to categories and recent posts on the main side bar? Thanks.
1 Answers
If you want to remove the icons, you can add the following code to the style.css file:
.widget_categories > ul > li:before {
content: close-quote;
}
.widget_recent_entries li:before {
content: close-quote;
}
Also, if you want to change the icon, you can find the icon here: http://fortawesome.github.io/Font-Awesome/3.2.1/icon/youtube-sign/
Then use the unicode of the icon to change in the following code:
.widget_categories > ul > li:before {
content: "\";
}
.widget_recent_entries li:before {
content: "\";
}
See the screenshot: http://prntscr.com/8djgng
Hope this helps !
Please login or Register to submit your answer