• Resolved emilnygaard

    (@emilnygaard)


    Is it somehow possible to use my own images instead of the fontawesome icons in the services module? ??
    Maybe by changing the CSS?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Yes, you can do that. For that, you have to remove the font-awesome class in that section & put your own custom class there. And in that class, provide your desired image as a background via CSS. This will do it for you! Best of luck.

    Thread Starter emilnygaard

    (@emilnygaard)

    Ok great – just to make sure, which file is that in?
    Would that be in inc/widgets/service.php ?
    And I want seperate images for each service, any ideas on how to do that ? ??

    To have different image for different services, you don’t have to edit the files.Just go to the backend where ‘Corporate Service Widget’ is pulled. And there, just add unique class name in each of the block where it says ‘icon’. Lets say, if you’ve kept ‘abc’ as class name in one of the section then you’ve to add the following css code:

    i.fa.abc {
        background-image: url('');
        background-size: 100%;
    }

    Note: Please fill the url section with your image url.
    Best of luck!

    Thread Starter emilnygaard

    (@emilnygaard)

    Perfect, thank you so much!

    You’re welcome. If you’ve any further problems, kindly post it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Use images instead of icons?’ is closed to new replies.