• Resolved freshkandb

    (@freshkandb)


    I’m developing a new website for my new business and some of the content contains bulleted lists (unordered lists). Evolve is not letting me change the character used to mark these lists. When I add <UL type=”square”> or change individual list items <LI type=”square”>, square bullets appear in the content displayed on the Visual tab in edit mode, but when I go to the actual website, the > symbol is still there.

    I find a similar issue with another theme and added this code to

    #content ul {list-style-type: square;}

    to the custom CSS theme option, but that makes no difference either. I would also like to have more space between list items and am not sure if I would need to edit the existing CSS file to do that.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Can you post a link to your site?

    Thread Starter freshkandb

    (@freshkandb)

    It’s still under construction, so I just disable the Coming Soon plug-in so you can see it.

    Thanks for taking a look.

    http://freshkitchenandbathdesign.com/

    If your theme has a built-in custom CSS option, use it; otherwise, get a custom CSS plugin and put:

    ul, ul ul, ul ul ul {
    	list-style-image: none;
    }
    Thread Starter freshkandb

    (@freshkandb)

    I did use the built-in custom CSS option in my theme and it didn’t work. See my original comment. I just found that code in another forum post. I’m not a programmer, so I have no idea if that was the right code.

    I don’t know what I should put into my custom CSS option to change the > bullet characters to squares. Do you?

    Thread Starter freshkandb

    (@freshkandb)

    Actually, I kept searching the forum and found an identical problem that was solved with adding this to custom css:

    ul { list-style: disc; }
    ul li:before { content: none; }

    I changed disc; to square; and now mine is working as I want. Thanks y’all.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘evolve them won't accept style change for bullets’ is closed to new replies.