Hi guys, I need help changing font sizes on Reformation theme:
https://7c5ea5-86.myshopify.com/
This is a Text with Icons layout and the heading size is too small. How do I edit the code to change it to 30px?
Also, the headers on the Gallery are split once published, but they look okay in preview. How can I fix this?
Hello! @Shay20241 Please follow these steps to add this CSS code:
- Go to your Online Store
- Click on “Themes”
- Select “Edit code”
- Open your CSS file. If you have a custom CSS file, open that instead.
- If you can’t find your custom CSS file, open “base.css”
- Add the following code at the end of the file.
body .gallery__item-content h4 {
font-size: 30px;
}
/* Please make sure to modify the media query CSS in his current file. */
@media only screen and (min-width: 1440px) {
body .gallery__item-content {
padding: 60px 40px;
}
}
If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.