No visible bullets

I’m using integrity and when I create bullets the html is

  • and the text editor added the actual bullets but they do not display on the front end, even though they are visible in the editor.
    http://ovpp.robstrickland.net/recreation/
    How do I force them to display?
    Thanks again,
    Rob

Hello Rob,

Please add the CSS code below to X > Launch > Options > CSS

body ul {
    list-style: disc;
}

Hope that’ll do it.

Thanks.

Thanks, that did not work… I also tried
.x-body ul { lists-style: disc; }

Hi There!

Can you please add this updated code and let us know how it goes.

body ul {
    list-style: disc;
}
.geodir-x ul {
    lists-style: disc !important; 
}

Thanks

nope, doesn’t seem to work…

Hi There,

I have added the list inline styling on your code:

<ul style="list-style: disc;">

Hope it helps

Thanks for doing that, but as you can image I don’t want to have to do that each time, on each list on every page…
Isn’t there a setting, or css trick to do the job globally?
Regards,
Rob

it looks like .x-text instead of .body worked

Glad to know that :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.