[Support request] all text beyond bullet points – and with space

Home Forums Support [Support request] all text beyond bullet points – and with space

Home Forums Support all text beyond bullet points – and with space

  • This topic has 5 replies, 2 voices, and was last updated 4 years ago by David.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #824929
    manuschak

    Hi there

    thanks for giving me a simple css for creating lists with bullet points.

    Now I would like to have the whole text of several lines beyond the bullet points (you call this indent, do you?)
    and i also wish to have more space between the text and the points. How?

    Thanks for your help!

    GeneratePress 2.2.2
    #825011
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    #main ul li {
        list-style-position: outside;
        margin-left: 1em;
        padding-left: 0.5em;
    }
    #828177
    David
    Staff
    Customer Support

    Hi there,

    in your Simple CSS you are missing a closing } on the previous CSS rule ie.

    .entry-content ul {
        list-style: circle;

    Should be this

    .entry-content ul {
        list-style: circle;
    }

    Fix that and the above CSS will work

    #828262
    David
    Staff
    Customer Support

    You have a few other errors in your CSS, replace all of it with this:

    header {
        font-family: 'bradley hand';
        'bold'
    }
    
    .widget ul {
        margin: 0 0 1.5em 3em;
    }
    
    .widget ul li {
        list-style-type: disc;
    }
    
    ul {
        padding-left: 0;
    }
    
    ul li {
        list-style-position: inside
    }
    
    @media (max-width: 768px) {
        .one-container .site-content {
            padding: 20px;
        }
    }
    
    .extra-border {
        border-width: 5px !important;
    }
    
    /* Lists */
    .entry-content ul {
        list-style: circle;
        margin-left: 0;
    }
    
    .entry-content ul {
        list-style: circle;
    }
    
    #main ul li {
        list-style-position: outside;
        margin-left: 1em;
        padding-left: 0.5em;
    }
    #829117
    manuschak

    thank you very much for this support – now its perfect!

    #829244
    David
    Staff
    Customer Support

    You’re welcome, glad you got it resolved.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.