For example, in front of a title: https://www.buro-bic.nl/contact/
Give the module the class hws-title-icon. Then add one for the following css.
This one is written by chatgpt
.hws-title-icon h1::before {
content: "";
background-image:
url(https://burobic.hrcws.nl/wp-content/uploads/Beeldmerk-Buro-Bic-75x75-1.png);
width: 75px;
height: 75px;
display: inline-block;
background-size: cover;
margin-left: -75px;
}
Code language: CSS (css)
This one is a background attached to the module. It can’t be attached to titles inside modules as that gives problems with centred text.
/* START add icon before title */
.hws-title-icon {
background-size: initial;
background-position: left top;
background-image:
url(https://burobic.hrcws.nl/wp-content/uploads/Beeldmerk-Buro-Bic-75x75-1.png);
padding-top: 3em!important;
padding-left: 3em!important;
margin-left: -3em!important;
}
/* END add icon before title */
Code language: CSS (css)