How can I change the font of one column to 'Work Sans'?

Hello everyone,

I was wondering if its possible to change the font of one column. I would like to have the font changed to ‘‘Work Sans’’, and everything in white if possible.

URL: https://glowee.nl/

Any help is greatly appreciated.

Thank you.

Hi @Dike

On your current homepage that section seems to have changed colors. Is it still the same that should be adjusted?

Let me know!

1 Like

Hello @JHKCreate , thank you for your reply.

I have opted to use black text color, but I would still like to have the font changed if possible.

Thank you.

Add the following code at the end of your base.css file:

document.querySelector("#shopify-section-template--15290490290398__16372376068d4eb299 > div > div > div.title-wrapper-with-link.title-wrapper--self-padded-mobile")
{
    font-family: 'Work Sans'!important;
}

#Slider-template--15290490290398__16372376068d4eb299 > li > div > div.multicolumn-card__info > h3
{
    font-family: 'Work Sans'!important;
}

#Slider-template--15290490290398__16372376068d4eb299 > li > div > div.multicolumn-card__info > div > p
{
    font-family: 'Work Sans'!important;
}

#shopify-section-template--15290490290398__16372376068d4eb299 > div > div > div.center > a
{
    font-family: 'Work Sans'!important;
}

Let me know if that works!

1 Like

This worked perfectly, thank you so much!