Okay
  Public Ticket #1207330
apply css to only specific element
Closed

Comments

  •  1
    aliwash started the conversation

    so I have CSS for changing the space after items in the Fancy Unordered List element:

    .nectar-fancy-ul ul li {
        padding-bottom: 10px!Important;
    }

    but I only want it to apply to SOME of my lists. I can't add an extra class to the Fancy Unordered List element, so I'm wondering how to go about this?

  •  8,470
    Tahir replied

    Hey Again,

    You can add a Extra Class to the Row or Column that has the fancy list and then add that extra class in the css selector like this :

    .extra-class .nectar-fancy-ul ul li {
        padding-bottom: 10px!Important;
    }

    Thanks 


    ThemeNectar Support Team