Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #962891

    Hi there,

    I have added bullet points to a text in a text box of a sidebar and inserted some bullet points, which look okay in the visual and html/text preview. However, on the actual website the text comes up unformatted. What can I do to fix this?

    Thanks!

    PS: This is what the html looks like:
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr,

    • sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
    • sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
    • Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur

    sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

    #963386

    Hey Colindie,

    Can you give us a link to the page mentioned? so we can take a closer look.
    You can post the link in private content, if you want it to be seen only by the moderators.

    Best regards,
    Nikko

    #963397
    This reply has been marked as private.
    #964024

    Hi Colindie,

    You can give us temporary account, as long as it has proper permission to view the page then it should be good enough.

    Best regards,
    Nikko

    #964662

    Hi Nikko,

    ok, please find the log-in details below.

    You’ll find that there is a section with bullet points in the widgets, but the bullets don’t show up on the website.

    Thanks!

    #964673

    hm – there was rule in base.css :

    ul {
        list-style: none outside;
        margin-left: 7px;
    }

    don’t know why – maybe it is forgotten to set the specified rule for widgets
    maybe you set better the ul to a custom class because not to influence all ul’s of your site like:

    <ul class="squarepoints">
     	<li>sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,</li>
     	<li>sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.</li>
     	<li>Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur</li>
    </ul>

    and then:

    ul.squarepoints {
        list-style: square inside;
        margin-left: 7px !important;
    }
    #964677

    for outside list-style-position:

    Edit : ok there was a overflow setting which is set to not visible to widget ul so to see the outside points :

    ul.squarepoints {
        list-style: square outside;
        margin-left: 18px !important;
        width: auto !important;
        overflow: visible !important;
    }
    • This reply was modified 6 years, 5 months ago by Guenni007.
    #965065

    Thanks, Guenni007, but this doesn’t seem to work.

    #965351

    Hi Colindie,

    Thanks try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .sidebar .widget ul {
        margin: 0 0 20px 7px;
        list-style: disc outside;
        float: none;
        overflow: visible;
    }
    
    #top .sidebar .widget ul li {
        margin-left: 1em;
        padding: 3px 0;
    }

    Best regards,
    Nikko

    #965422

    It worked! Thanks a lot!

    #965452

    Hi Colindie,

    Glad that we could help. :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘No bullet points in text widget of sidebar’ is closed to new replies.