Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #98823
    Herbie
    Participant

    How can I modify the bullet (li) e.g. arrow, the color e.g. red
    and the left margin
    See
    http://naehbistro.ch/blog/w6-nahmaschine-1235/

    Thank you for any help

    Kund regards
    Herbie

    #98854
    Mahesh
    Keymaster

    @arnold: First you are missing <ul> tags around the list items in your content. Please wrap it around the <ul> tags. I assume you want this only in your content and no other list items. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .entry-content ul, .entry-content ul li {
        list-style: none;
        margin-left: 20px;
    }
    
    .entry-content ul li:before {
        content: "\00BB \0020";
        color: #ff0000;
    }

    Note: Please adjust the margin as desired.

    Regards,
    Mahesh

    #99512
    Herbie
    Participant

    Thank you Mahesh

    It works like a charm.

    An other query.
    I would have a different background color in widget promotion headline left which is same width like the menu bar.

    ist this possible

    TIA
    Warm egards
    Herbie

    #99639
    Mahesh
    Keymaster

    @arnold: Please add the following CSS:

    #promotion-message mark, 
    #promotion-message ins {
        background: none;
    }
    #promotion-message {
        background-color: #ff00ff;
    }

    Note: Please change the color as desired.

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Bullet point, bullet color and left margin’ is closed to new replies.