Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #780923

    I’m having an issue with bullet points overlapping the text in lists. There isn’t any custom css defined in the quick css or the child theme style.css. This happens in both the Content of an Icon Box as well as in a Text Block. Links to the page and a screenshot are in the private content.

    Here’s the css from inspecting the element. Overriding the background position to move the icon left makes it disappear outside the container.

    .iconbox_content_container li {
    list-style-type: none;
    background-image: url(tick.png);
    background-repeat: no-repeat;
    background-position: 0 .6em;
    margin-bottom: 7px;
    }

    Also, by selecting all the text and left justifying it, the content of the icon box is centered as you can see in the first box. This is really odd.

    Any ideas what’s causing this?

    • This topic was modified 7 years, 7 months ago by jstonestreet. Reason: Added the centered content when left justifying line
    #781048

    Hey jstonestreet,

    Please try the following in Quick CSS under Enfold->General Styling:

    .iconbox_content_container ul li {
      padding-left:20px;
    }

    Best regards,
    Rikard

    #781319

    That worked. Kind of. The bullet image doesn’t overlap the text, but it’s also indented right of the text above it. Shouldn’t the bullet be aligned with the paragraph above?

    We just noticed this issue recently. We built this site a couple years ago. Did something change in a recent update to affect the bullet position?

    Thanks for getting to this so quickly!

    #781405

    Hi,

    Lists are usually indented, but try to add margin-left: 0; to Rikard’s code, the new css code should look like this:

    .iconbox_content_container ul li {
        padding-left: 20px;
        margin-left: 0;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #781716

    Thanks. I think I’ll leave it indented like it is.

    #781819

    Hi,

    Glad we could help. Let us know if you need more assistance regarding this topic :)

    Best regards,
    Nikko

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