• Resolved newseed

    (@newseed)


    I’m using WP’s default template and I really don’t like those double arrow characters for the menu and for any unordered/ordered list.

    Is there a way to hide them via css or do I need to remove them via php file? For either one, how do I go about removing them.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The Codex articles, CSS, and Styling_Lists_with_CSS, will head you in the right direction.

    Thread Starter newseed

    (@newseed)

    Too much info to go over. I was hoping something a bit more specific. As a blind person, I need to be directed to the source that will allow me to remove those double-arrows within the menu unordered/ordered list. When I view source via browsers, I don’t see those double-arrows or it’s ascii character codes.

    Can you please narrow down to the part where I can learn to remove them or at least turn them off.

    Thank you.

    Line 419 in wp-content/themes/default/style.css with version 2.7.1 of WordPress.

    content: "0BB 020";

    00BB refers to the Hexidecimal value of the right double angle so see http://www.ascii.cl/htmlcodes.htm for other codes to use.

    The 0020 is a space.

    Thread Starter newseed

    (@newseed)

    OH that makes sense. I totally missed the content CSS rule.

    Thank you very much for you help.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Removing Double-Arrow Characters’ is closed to new replies.