How to replace the font in the middle of a tag

Hello Guys.

How I would replace the font type in the middle of a [H1] tag such as:

what can XXXXXXXX do for you?

the XXXXXXXXX would be a different type of true font

Best,

Hi Robert,

Thank you for writing in, you can wrap the specified text in a <span> tag, and apply a class on that tag that will define the font-family of that text.

Something like this:

what can <span class="custom-font">XXXXXXXX</span> do for you?

And then on Theme Options > CSS, you add this:

.custom-font {
	font-family: "comic-sans", sans-serif;
}

Replace the comic-sans with the actual name of your site.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.