Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#2262
Robert Kavgić
Participant

Hello,

To remove the “>” icon from lists, use the following CSS code (add it to “Elvyre options -> Appearance – Custom CSS” box”):

.widget li {
    background: none !important;
}

To set the first list level text to be bold, use the following code:

.widget ul > li,
.widget ul > li > a {
    font-weight: bold;
}

Robert