Sorry, a few more questions, but I thought it would be best to separate to two different posts.
I’m also trying to figure out how to change the text font to a teal color for a page (the featured page) but keep the same black font color for the other pages. Currently:
To this:
Last question is that in the FAQ page, is there a way to adjust the font size for the heading for the collapsible section to be bigger than the content text size?
The website is https://thirstyrhino.myshopify.com/
and password is skeipe
Again, I sincerely appreciate for all your help!
Thank you in advance!
@thirstyrhino ,
In FAQ
Its already big in size.
.isolate h2 {
color: #3db7c2;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid
Hi @thirstyrhino ,
- Color: Go to layout > theme.liquid file, find ‘’ and add code here:
Code:
{%- if page.handle == 'featured' -%}
{%- endif -%}
1 Like
Hi @thirstyrhino ,
I am Ani From https://www.task4store.com/ - Shopify Small & Custom Tasks Experts ( By MS Web Designer - Top Rated Shopify Certified Experts and eCommerce Consultant from Singapore )
Here are the Solutions!
It is for featured page font:
{%- if page.handle == 'featured' -%}
{%- endif -%}
Go to Online Store->Theme->Edit code->theme.liquid
For FAQ page:
.accordion__title {
font-size: 20px;
}
Go to Online Store->Theme->Edit code->assets->base.css(last line)
If you have any concerns feel free to ask me!
Regards,
Anni
1 Like
Unfortunately, it changes all the headers on the website, but I appreciate the help. I’ll keep note of it in case I need to do all instead of a single page.
Thank you, both of them work!
1 Like