Changing Font for Classic Feature Box

Hi There,

Is it possible to change the font for the title and content for the classic feature box?

I have tried using
.x-feature-box .x-feature-box-title {
Font: 23px font;
}

But it doesn’t seem to be able let me use the fonts i want.

Thanks!

Hi There,

Thanks for writing in!

The CSS should be like this.

.x-feature-box .x-feature-box-title {
font-family: "your font name";  /* font family name should be here*/
font-size: 23px;
}

Hope this works!

Hi Basanta,

That worked great, almost too well because it changed the font of every feature box in the page. Is it possible to change the only a single feature box?

Thanks!

Hi There,

Yeah sure, please apply a CLASS custom-featurebox to your Feature Box element



Then update the provided CSS code to this:

.custom-featurebox .x-feature-box-title {
font-family: "your font name";  /* font family name should be here*/
font-size: 23px;
}

CSS class Selector

Hope it helps,
Cheers!

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