Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi

    try this
    in your theme’s stylesheet, style.css on line 308 is this

    .entry li {
        line-height: 1.8em;
        margin-left: 20px;
    }

    add one line so it looks like this

    .entry li {
        line-height: 1.8em;
        margin-left: 20px;
        list-style-position: inside;
    }

    that will probably accomplish what you want

    Thread Starter theorganisedhousewife

    (@theorganisedhousewife)

    thankyou for the help, the bullet has moved to the correct position, however now it has the text aligned incorrectly. You will see on my first and second post https://theorganisedhousewife.com.au/

    appreciate the help.

    OK, let’s try this a different way.

    Remove the line I had you add before list-style-position: inside; (see the last post for exact location)

    find this on line 585

    img.alignleft {
        display: inline;
        margin: 0 7px 2px 0;
        padding: 4px;
    }

    change it to this

    img.alignleft {
        display: inline;
        margin: 0 20px 2px 0;
        padding: 4px;
    }

    Thread Starter theorganisedhousewife

    (@theorganisedhousewife)

    thankyou for all your help stvwlf, that’s looking alot better. But if I can be really picky how can I get the bullet to align with the paragraph text above https://theorganisedhousewife.com.au/2010/12/07/christmas-planning-gifts-received/

    The short answer is you don’t very easily. The image to the left makes the bulleted text to the right take finicky styling to line up correctly. That is what my first attempt was about, and it caused problems in other parts of your layout.

    If you want to drop all 3 bullet points down below the image where they will align with the left, you can try adding float: left
    to this block on line 301

    .entry ul {
         list-style: disc outside none;
        margin-bottom: 20px;
    }

    It might cause side effects on other posts so look at other posts with bullets before leaving the new line in there.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘bullet points on top of picture’ is closed to new replies.