Okay
  Public Ticket #1630221
Icon List Color
Closed

Comments

  • danielpetz started the conversation

    How can I change the font color of the icon list to white? Is there some CSS code I can use. Half the page has black font and the other half has white font.

  •  9,002
    Tahir replied

    Hey D,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .nectar-icon-list-item .content {
        color: rgb(0, 0, 0) !important;
    }
    .row .nectar-icon-list .nectar-icon-list-item h4 {
        color: #000
    }
    .nectar-icon-list[data-icon-style="no-border"][data-icon-size="small"] .nectar-icon-list-item .list-icon-holder i {
        color: #000 !important;
    }

    Thanks


    ThemeNectar Support Team