List has unwanted ">" symbol

Support Area Forums Elite List has unwanted ">" symbol

Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
URL to the page in question: http://digitalprint.paulcato.com/home/
  • Author
    Posts
  • #36361
    Paul Cato
    Participant

    Hi Bill,
    In an Ordered List I keep getting the > symbol between the number and the list entry. Is there a way around this? I’m sure it looks weird like this.

    Thanks, Paul

    Attachments:
    #36372
    Bill Robbins
    Moderator

    Hi Paul,

    It looks like the ordered list is grabbing the bullet from the unordered list which not what we want. Here’s how to take that out. Go to the Theme Options page and click on the Advanced tab. Scroll down to the Custom CSS box at the bottom and enter this:

    
    .widget ol li:before {
    	content: '';
    }
    

    and save your changes. See if that won’t take it out. If you run into trouble or questions, let me know.

    Thanks,
    Bill

    #36376
    Paul Cato
    Participant

    Hi Bill,
    That’s not making the change yet. If I look at the visual editor it looks fine, just has numbers.
    Images in visual and text attached. But the page still refreshes with numbers and the ‘>’.

    BTW, how could I change the ‘>’ to just a bullet point? Easily.

    #36379
    Bill Robbins
    Moderator

    Hi Paul,

    I believe it’s these divider lines in the custom CSS that’s causing that from not picking up correctly:

    
    -----------------
    

    Notes are great in code. For CSS, you’ll can use notes this way:

    
    /* Note goes here */
    

    or something like this:

    
    /*  Note
    ------------------------------------------------ */
    

    The main thing is it needs to open with a slash and asterisk and close with an asterisk and slash.

    Try swapping those out and see how it goes then.

    Thanks,
    Bill

    #36380
    Paul Cato
    Participant

    Genius!
    Thanks, Bill. I should have known that I guess.
    Paul.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘List has unwanted ">" symbol’ is closed to new replies.