Hi everyone,
I need a little bit of help with my ABOUT AND ICONS section on my product page for both mobile/desktop view.
I am having some spacing issues that I would like to solve.
My issues are below.
1. How do I add 50px padding to the top of the About and icons section.
2. How do I add 30px gap between each of the 3 icons and text so they are evenly spaced out.
I have tried to add my own code to the theme.scss.liquid section but either nothing happens or my whole site scrambles.
I have attached a screen shot from the mobile version of my store below to show what I need help with. My url is also below.
https://ylb9x18jn9ztpjft-54993551588.shopifypreview.com
THANK YOU kindly.
Hi @Timstar ,
Try this CSS
@media screen and (max-width: 500px)
.about-and-icons-column {
width: 100%;
/* padding-top: 0px; */
padding-bottom: 30px;
max-height: unset;
}
This did not seem to work.
I entered your code at the bottom of my theme.scss.liquid this happened.
@Timstar
can you try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
@media screen and (max-width: 500px) {
.about-and-icons-column:first-child {
padding-top: 50px;
}
.about-and-icons-column {
max-height: 100%;
}
}
I will try this now. Thank you.
The padding at the top is great but i think you forgot to space out each of the 3 sections.
Can you please give me the code to add 30px of space between each of the 3 section.
Please see mobile screen shot below.
@KetanKumar
There was a slight error please see screenshot from mobile above.
Thank you.
@Timstar
@media screen and (max-width: 500px) {
.about-and-icons-column {
width: 100%;
/* padding-top: 0px; */
padding-bottom: 30px;
max-height: unset;
}
}
I hope this should work now
@Timstar
yes, please add this code also
@media screen and (max-width: 500px) {
.about-and-icons-column {
max-height: 100%;
}
}
Its looking a little better but The 50px padding at the top has disappeared. Can you please add this back in and also I would like more gap in between each section. Thank you.
Hi there, I tried your code and nothing happened.
Thank you for your help though 
@KetanKumar are you able to help me with the spacing?
I just need 50px on top and some more space in between the 3 sections.