Hi all,
I'd like my bullets returned to my unordered list.
They disappeared some time ago, but now I need them back.
I use K2 and thought there may be some conflict with the template (Buildr Koan) that made them disappear.
I discovered that zenkit.css is setting the style type to 'none', BUT I have unpublished zenkit, so why is it still influencing the list?

#zenkit ul, #zenkit ul li {
list-style-type: none;
margin: 0;
padding: 0;
}

Please let me know how I can fix this.

Thanks, Nick

    NickMo1
    Hi
    Override the above code in custom css file

    #zenkit ul, #zenkit ul li {
        list-style-type: circle;}

    Save and check.

    NickMo1
    Zenkit use own style
    media/zenkit/css/zenkit.css
    Remove this code and custom.css code to get default style

    #zenkit ul, #zenkit ul li {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    Thanks pankaj, that did it.
    It gets a bit confusing when you have CSS from zenkt; K2; k2Store and the template fighting each other for final say in presentation.

      NickMo1
      Hi each extension comes with own styles this is normal in developments as very extension offer own style and layouts.

      Write a Reply...
      You need to Login to view replies.