Hi,
I am using the Prestige 7.3.3 theme with a featured collections section. I’d like to change the font size of only the collection title ‘Neu im Sortiment’ to 23px (desktop view).
No matter how many times I tried it is not possible to change the font size in the typography settings or the custom css of the theme (the other headlines of the website change just fine when adjusted).
https://wokr2cdb3udwp9g7-28196274313.shopifypreview.com
Any ideas?
Thanks in advance!
Hello @theithei ,
Follow these steps:
-
Go to Online Store → Theme → Edit code
-
Open your theme.css file and paste the following code below:
#shopify-section-template--18007138173196__featured-collections .h2 {
font-size: 23px;
}
Thanks
thanks for your idea but it’s not working
Hi @theithei ,
Follow these steps
- Go to Online Store → Theme → Edit code
- Paste this code to end of your theme.css file
main [id^='shopify-section-template']:nth-child(3) .SectionHeader h2 {
font-size: 23px;
}
Hope it’s useful to you @theithei !
1 Like
hey @BSS-Commerce
thx but unfortunately this is also not working…
any other ideas?
This preview link has expired.
Please give me a new link @theithei .
1 Like
so i contacted the support for my theme and they pointed out the mistake. instead of ‘p.h2’ i just typed ‘h2’ in the css, which is why it wasn’t working. if someone out there ever needs it, add this to your ‘featured colletions’ (custom css):
p.h2 {
font-size: 23px;
}