Hi there!
How can I change the font (color for example) of this text “FIND YOUR FESTIVAL OUTFIT” without changing the h2 definition in Base.css?
Is there a way to only touch this specific instance? for example editing the file section-image-banner.css?
I would like to specify a new font-weight, spacing etc …
Thanks a lot for your time!
Website: https://venga-store.com/
Theme: Dawn
Go to that section custom css by scrolling down to the end and add the following code:
h2 {color: red;}
change it to your desired color
Hi @miltokas ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file → Save
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
You can create a helper class for that.
In base.css, create a class
.bold {
font-weight: 700;
}
.red {
color: red;
}
and you can use this class to any element.
Ex.
## FIND YOUR FESTIVAL *OUTFIT!*