Categories and feature lists fonts

Hey guys!

I have a question. Is it possible to have the same font as the titles also in the categories ?

also in all my index ( featured lists) I had the same font as well but in this post in particular it doesn’t work I have the old font (late) instead of Candara (the new one)

could you please help me?
thanks a lot
cheers
Isabella

Hey Isabella,

Thanks for writing in!

You have added this custom css code:

.p-landmark-sub, .p-meta, input, button, select, textarea {
    font-family: "Goudy Old Style",Garamond,"Big Caslon","Times New Roman",serif;
}

You may need to update it and change it to Candara.

And for the feature list, you can make used of this code:

p.x-feature-box-text {
    font-family: Candara, serif;
}

Please let us know how it goes.

Hello there
I am sorry but I can’t see it? :frowning: I went through all the CSS in X> theme options>CSS
but I cannot see what you are reading.

Could you please help me with that?

Also in my other posts, where it come out correct I didn’t add any p.x.feature-box . can’t I just take out the wrong code without adding any extra code?

thanks a lot for your help
cheers
Isabella

Hi Isabella,

I can’t find it either, but as suggested, you can also add it as custom CSS with your preferred font. Example,

.p-landmark-sub, .p-meta, input, button, select, textarea, p.x-feature-box-text  {
    font-family: Candara, serif;
}

Thanks!

hello there
my question is, if Candara is my selected font for the titles and subtitle in the main setting why it doesn’t automatically show?

thanks
cheers
Isabella

Hi Isabella,

The post meta that displays categories below the titles were using the global font settings of the body. It is best that you add a custom css instead as @Rad had suggested:

.p-landmark-sub, .p-meta, input, button, select, textarea, p.x-feature-box-text  {
    font-family: Candara, serif;
}

Hope this helps.

Hello @ruenel I understand what you are saying but I don’t understand why in all the other cases the correct font came out by default and now for this post I need to use the code.

Can you please explain this?
thank you so much
cheers
Isabella

Hi Isabella,

May I know where do you set the font? Because based on the settings, it still set to "Goudy Old Style",Garamond,"Big Caslon","Times New Roman",serif for the texts (body). Would you mind providing a screenshot of your font settings? Because these are what I’m seeing

The Candara is assigned on the header (titles), and Goudy for body (texts).

The featured list has two parts, the title and the text. The Candara is already assigned to the title which works okay, so what’s left is the text which inherited the Goudy from the body (since it’s text). So the provided CSS is

.p-landmark-sub, .p-meta, input, button, select, textarea, p.x-feature-box-text { font-family: Candara, serif; }

Hence p.x-feature-box-text for the CSS.

I provided it since Candara works and maybe you’re only referring to the text and not the title. Maybe I just missed something, would you mind providing more details of the issue you’re getting?

Thanks!

oh oh ok ok I understand what you are saying now I have updated the code and it’s working thanks a lot.
cheers
sorry for the confusion.

cheers
isabella

You’re most welcome, Isabella.

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