Link to home
Start Free TrialLog in
Avatar of WebStudioWest
WebStudioWestFlag for United States of America

asked on

Wordpress - How do I Change Default Arrows (raquo) to Discs for List Item Bullets?

If I create an unordered list in Wordpress, it uses the double arrow symbol (») for list item bullets. I would like these to be dots (discs) instead. Does someone know where to change this. I couldn't find it in the style sheet.

See this page for example: http://www.baldwinpediatrics.com/blog/?p=14

Thanks, Gary
Avatar of Mick Barry
Mick Barry
Flag of Australia image

its not actually coming from the list style. If you change the list style to discs you actually get both.
Must be getting inserted by something else, will have a dig and see what I can find.
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of WebStudioWest

ASKER

They're using hex codes! I wasn't searching for a character hex code. Thanks for finding that. I would give you more points if I could.

I separated the entry from the sidebar. So lists on the sidebar retain the double arrow and post content lists get bullets. I simply had to change 00BB to 2022. The code 0020 is a space.

.entry ul li:before {
      content: "\2022 \0020";

      }

#sidebar ul ul li:before {
      content: "\00BB \0020";
      }