Hi,
I have added collapsible content blocks on my product pages. E.g. ‘More info’, ‘Production’ etc.
The arrows on the right are not lining up properly.
Does anyone know how I can align them or hide the arrows completely?
Thanks for your help!
A user is experiencing alignment issues with arrows in collapsible content blocks (such as ‘More info’ and ‘Production’ sections) on product pages using the Horizon theme.
Proposed Solution:
.product__accordion .accordion__title {
display: flex;
align-items: center;
justify-content: space-between;
}
Status:
One community member provided a specific CSS fix to align the arrows using flexbox properties. Two other users requested the store URL to investigate further, but the original poster has not yet confirmed whether the solution resolved the issue.
Hi,
I have added collapsible content blocks on my product pages. E.g. ‘More info’, ‘Production’ etc.
The arrows on the right are not lining up properly.
Does anyone know how I can align them or hide the arrows completely?
Thanks for your help!
Hi @MrWild
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.
@MrWild can you please share your website link?
Hi @MrWild,
1. Go to Online Store → Theme → Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.product__accordion .accordion__title {
display: flex;
align-items: center;
justify-content: space-between;
}
Thank you!