can someone help me, i want to change the position of kiwisizing, now it is just underneath my price and it needs to be like this:
Topic summary
A user needs help repositioning the Kiwisizing element on their product page—it currently appears below the price but should be next to the size selector.
Solution Provided:
- Add CSS code to theme.css/base.css/style.css file
- The code uses absolute positioning to move the sizing chart link element
- Specific CSS targets
span.ks-chart-modal-link.sizing-chart-modal-link.with-icon
Implementation Steps:
- Access Shopify admin → Online Store
- Click Edit Code next to the live theme
- Locate theme.css/base.css/index.css/style.css file
- Add the provided CSS code at the bottom of the file
The helper offered to implement the changes directly if the user is unable to do so themselves. A screenshot showing the expected result was included in the response.
Hi @Svds
Can you please provide your store URL and password as well if applicable, so that I can provide you solution that can work for your store.
Best regards
Sahil
Hi @Svds Please add the code in your theme.css/base.css/style.css file which is available in your theme.
span.ks-chart-modal-link.sizing-chart-modal-link.with-icon {
position: absolute;
left: 8rem;
top: 24.7rem;
}
If you are not sure where is your theme.css/base.css/index.css/style.css file please follow the steps:
- Login in shopify admin.
- Click on the Online Store.
- Then click on the button next to Customize in live Theme.
- Click Edit Code.
- Search theme.css/base.css/index.css/style.css in the code in left hand side which ever is available in your theme.
- You can add the above code at the bottom of the file.
Result:
If you will unable to implement the same then I’m happy to do this for you, let me know. I can implement the code changes so that this will work well for you.
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Best Regards
Sahil

