Headline Text Element

Hi,
So my headline text element is displaying a different font. For the font family there are three options Headings, Body Copy, and Inherit. My default heading font is Caesar Dressing. Neither of those options display my default font.

How do it get the pro heading element to display my Caesar Dressing font? None of the element settings work. I tried to add css and didn’t work. It this an error with the cornerstone plugin?

I’ve tried using this css to change the font.

.x-text .x-text-content-text-primary {
font-family: " Caesar Dressing";
}

Any ideas how to change the font type?

Hello @quituck,

Thanks for asking. :slight_smile:

Actually there was a syntax error in the code that I have fixed and changes are reflected. Here’s the code that had the problem. In the following code semicolon should be after !important.

.x-text .x-text-content-text-primary {
font-family: "Caesar Dressing"; !important
}

Here’s the correct code:

.x-text .x-text-content-text-primary {
font-family: "Caesar Dressing" !important
}

Thanks.

Thanks. Problem solved.

You are most welcome. :slightly_smiling_face:

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