• Resolved PeterMcMinn

    (@petermcminn)


    I recently updated some text on a page (Freelancer theme) but the code for a bulleted list doesn’t appear to be working. This is the code as it is now:

    <ul>
     	<li>a proposal outlining my approach to the work and the scope of editing</li>
     	<li>an itemized quote based upon word count and the level of editing required</li>
    </ul>

    The text is located here: under “Proposal”.

    What am I missing here?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Tom

    (@edge22)

    Ah, bullets are removed from widgets, and Site Origin gives their sections the .widget class.

    Try adding this CSS:

    .so-panel.widget ul li {
        list-style-type: disc;
    }
    
    .so-panel.widget ul {
        margin: 0 0 1.5em 3em;
    }
    Thread Starter PeterMcMinn

    (@petermcminn)

    Thanks for the quick reply. That did it!

    Thanks again, Tom;)

    Theme Author Tom

    (@edge22)

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘bulleted list code not working’ is closed to new replies.