Search code examples
htmlcssweebly

How do I add a class to my unordered list in Weebly?


Weebly help center can't help me on this simple one and they recommended the forums, google and w3schools. I wan't to style my <ul></ul> in weebly by adding a class to it. How do I do this?


Solution

  • I solved it, I override the standard theme design rather than create my own. These are the CSS parts I modified: #main-wrap .paragraph ul and #main-wrap .paragraph ol

    #main-wrap .paragraph ul {
        padding-left:5px !important;
    }
    
    #main-wrap .paragraph ul li {
        list-style: none !important;
    background: url(red-arrow.png) no-repeat 0px 0px;
        color: #000000;
        padding-left:30px !important;
    }
    
    #main-wrap .paragraph ol li {
        list-style: none !important;
        background: url(red-bullet.png) no-repeat 0px 6px;
        color: #000000;
        padding-left:20px !important;
    }