Image in frontpage parralax widget title?

Hi,
is there a way to have an image instead of the widget title? Otherwise, at least be able to give the title a div or class, so that the image could be loaded through css?
Thanks for some enlightenment.

Hi @milanouser,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

.shapely_home_parallax h1 {
    font-size: 0;
    background: url("https://colorlib.com/wp/wp-content/uploads/sites/2/colorlib-logo-top.png") no-repeat;
    background-size: auto 100%;
    height: 150px;
    background-position: center;
}

Please change the image URL in the above CSS code to whatever you want to set.

Best Regards,
Movin