Possible to remove/change upside down bookmark on sidebar lists?
-
Is it possible to change or remove the image that is used in the lists for recent posts, meta, and other widgets?
Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there, that bookmark icon is a Font Awesome font symbol. To hide that symbol, you can add the following CSS.
.widget_archive li::before, .widget_categories li::before, .widget_pages li::before, .widget_meta li::before, .widget_recent_comments li::before, .widget_recent_entries li::before, .widget_links li::before { content: ""; }If you wish to change it, you can go to the Font Awesome site and find an icon you wish to use. Click on the icon and then in the bottom of the grey section at the top of the icon page, copy out the unicode and insert it, between the quote marks in the content declaration with a backslash preceding the code, like this (which makes it a star symbol).
.widget_archive li::before, .widget_categories li::before, .widget_pages li::before, .widget_meta li::before, .widget_recent_comments li::before, .widget_recent_entries li::before, .widget_links li::before { content: "f005"; } -
-
- The topic ‘Possible to remove/change upside down bookmark on sidebar lists?’ is closed to new replies.