… changing the font size of the headline of a multiple column-element. E.g. the headline “Stivoll unabhängig”, “Qualität trifft Komfort” and “ Auslaufsicher & Hygienisch“ on this page: https://my-eloo.de/
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!
Happy to help! You can adjust the font sizes with a bit of custom CSS. Here’s how you can do it:
Change Font Size for Multiple Column Headings
For the section headlines like “Stivoll unabhängig”, etc., you can target them like this:
.multicolumn-card__info h3 {
font-size: 22px !important; /* Adjust the size as needed */
}
Change Font Size for Product Titles on Collection Pages
To change the font size of product names in the collection grid:
.card__heading {
font-size: 18px !important; /* Adjust the size as needed */
}
Where to Add the CSS
You can add this code in your Shopify admin under: Online Store > Themes > Edit Code > Assets > base.css (or theme.css, depending on your theme), and paste it at the bottom of the file.