• Resolved MLI

    (@madanlinkindustries)


    In the footer, there is a section named as product categories, under which you will see 4 categories. But then there is a icon which looks like a notepad at the beginning of each category.

    Is there a way to remove that icon?

    • This topic was modified 3 years, 8 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not a Requests and Feedback topic

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can remove the icon by placing this CSS in your Customizer.

    .widget-area ul li:after {
        content: "";
    }

    Or, since Font Awesome 4.7 is already used on your site, you can replace it with any icon in that set. Find the Unicode and put it into the content property. For example, for a long arrow pointing right you would use this CSS.

    .widget-area ul li:after {
        content: "\f178";
    }
    Thread Starter MLI

    (@madanlinkindustries)

    Thankyou Ricky! That works great ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change icon of ‘product categories’ widget’ is closed to new replies.