Home Forums WoodMart support forum How to change compare icon in every part of theme?

How to change compare icon in every part of theme?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #285916

    luzhabo
    Participant

    How to change compare icon in every part of theme?
    I need an icon with weights instead of crossed arrows, is it possible?

    Attachments:
    You must be logged in to view attached files.
    #285937

    Hello,

    I saw the screenshot you attached.

    Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.

    .wd-compare-icon>a:before {
        content: "\f128";
        font-family: "woodmart-font";
    }

    You need to replace the content of the CSS above with the content of the icon you want and also the font family.

    Regards.
    Xtemos Studios

    #286817

    luzhabo
    Participant

    I need font-awesome balance-scale icon
    <i class=”fas fa-balance-scale”></i>
    to replace every compare icon in theme.

    How to use it from theme Font Awesome library?

    I try this but its not working!
    .wd-compare-icon>a:before {
    content: “\f24e”;
    font-family: “Font Awesome 5 Free”
    }

    Attachments:
    You must be logged in to view attached files.
    #287016

    Hello,

    I saw the screenshot you attached.

    Please replace your CSS with the following in the Global Custom CSS area under Theme Settings >> Custom CSS.

    .wd-compare-icon>a:before {
        content: "\f24e";
        font-family: 'Font Awesome 5 Free';
        font-weight: 600;
    }
    
    .wd-header-compare .wd-tools-icon:before {
        font-size: 20px;
        content: "\f24e";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
    }

    Best Regards

    #287660

    luzhabo
    Participant

    I need Font Awesome icons with font-weight: 400;
    What is the best way to extend the functionality of the theme to Font Awesome 5 Pro from this source….

    #287797

    Hello,

    Our theme only supports a set of font-awesome icons in the free version.

    If you want to use all of the icons then you need to import the library manually or try using a plugin that enables them on the website.

    Regards.
    Xtemos Studios.

Viewing 6 posts - 1 through 6 (of 6 total)