How can i change the heading font on image with text section on password page

Hi,

I am trying to change the font of the heading on the image with text section on the password page without changing the font of all the other headings in the website. See the screenshot below.

Thankyou in advance!

Hi @DD2024 ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
h2.image-with-text__heading.inline-richtext.h2 {
    font-family: cursive !important;
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.

If you are happy with my help, you can help me buy a COFFEE

Thanks!

Now it’s up to you which font style you prefer. I’ve applied the cursive style for you, but if you don’t like it, here are some other font styles you can try. Just replace ‘cursive’ with one of these font styles and see how it looks

Hi,

Here are the steps to follow

  1. Go to Online Store → Theme → Edit code.
  2. Open your component-image-with-text.css file and add css.

h2.image-with-text__heading.inline-richtext.h1 {
font-family: emoji !important;
}

Thankyou very much!