How to add a title to FAQ page using Prestige theme?

Hey :slightly_smiling_face:

I have created a FAQ page. We are using the Prestige Theme, which made it pretty easy to create. However, it seems like I have no way to insert the title (T1). In fact, it starts directly with the first category of questions, but I would also like to have the heading “FAQs” on this page.

How is this possible?

yes its possible have you created FAQ page n pages section in shopify

just share your page url

@IsaRohr you can add title in this field check the screen shot

So unfortunately this is not possible, because with this theme (Prestige) I have to edit the FAQs in the theme area and not via the Pages.

With this theme I have the possibility to display the FAQs as a drop-down. Unfortunately I don’t know how to add a title here so that it plays out properly for example for SEO.

share your faq page url

https://ruhi-rituals.com/pages/haeufig-gestellte-fragen

The Titel “Häufig gestellte Fragen” is just another Section I added and not a SEO relevant Titel.

@IsaRohr go to sections find the file faq.liquid or file with name faqs and past the following code just above this

So just above the first yellow marked? Sorry, I’m not into HTML

I also then need to edit the font into “voyage”, where do I have to add this in this code?

yes exactly above pagelayout

ok use this code

# FAQs

Thank you! But it’s still not in voyage

font-family: voyage; type it like this in the code

@IsaRohr mark solutions accepted if they solved your issues

unfortunately this doesn’t work either, maybe we will have to refer to the CI of titles in Shopify, because normally our titles are played out directly with this fonts. Can this be a possibility?

This will work try it

font-family: voyage !important;

This should be correct or? But it’s still not voyage

@IsaRohr if youu want it through class

add this in theme.scss or theme.css

.faq-title{
text-align: center;
font-size: 57px;
font-family: voyage !important;
font-weight: 800;}

and add this above Pagelayout

# FAQs

@IsaRohr its working now