Hi,
On my product page “Andere kauften auch” (Others also bought), the font size is too big !!!
Can someone please help me make is smaller ?
URL: https://atelier-gstaad.ch/products/amara-zerrissene-jeans-mit-weitem-bein
A user reports that the “Andere kauften auch” (Others also bought) section heading on their product page displays with an excessively large font size, particularly on mobile devices.
Proposed Solutions:
Multiple respondents provided CSS code snippets to reduce the font size:
.section-stack .prose h2 and set font-size to 30px.product-info__title.h4 font with 20px font-size.shopify-section--product-recommendations .section-header h2 with 22px font-sizeAll solutions involve adding CSS code to the theme.css file via Shopify Admin > Online Store > Themes > Actions > Edit Code > Assets > theme.css.
Status: The issue remains unresolved as the original poster has not confirmed which solution worked or whether the problem was fixed.
Hi,
On my product page “Andere kauften auch” (Others also bought), the font size is too big !!!
Can someone please help me make is smaller ?
URL: https://atelier-gstaad.ch/products/amara-zerrissene-jeans-mit-weitem-bein
Hello there
Please use that CSS in theme.css file to make it smaller
Regards
Titu
.section-stack .prose h2 {
font-size: 30px;
}
@media (max-width: 767px) {
h1.product-info__title.h4 font {
font-size: 20px;
}
}
Hi @flaminmoe ,
Please go to Actions > Edit code > Assets > theme.css file and paste this at the bottom of the file:
@media screen and (max-width: 699px) {
.shopify-section--product-recommendations .section-header h2 {
font-size: 22px;
}
}