Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
I am trying to keep my text more in the center AND left align my text in this ABOUT page (so more free space to the left and to the right) and I also to delete the space in between the blocks, above and below (see picture).
Could anyone help me?
I am using the Symmetry theme. Thank you so much!
Solved! Go to the solution
This is an accepted solution.
Hi @Delasoul
Did you manage to align the text on the left?
for the space check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
div#section-id-template--20779550966098__custom_row_racrtw {
margin-bottom: 10px;
}
div#section-id-template--20779550966098__custom_row_qt6Cbw {
margin-bottom: 10px;
margin-top: 10px;
}
div#section-id-template--20779550966098__custom_row_kdtj6y {
margin-top: 10px;
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Yeah, sure. But I will give you 2 options how to do it.
1. Find this code below in your style.css.
And Change the font-weight: in your desire size.
2nd. Add this code in your style.css.
.subheading.subheading--over {
font-weight: 200;
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Hi @Delasoul
Did you manage to align the text on the left?
for the space check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
div#section-id-template--20779550966098__custom_row_racrtw {
margin-bottom: 10px;
}
div#section-id-template--20779550966098__custom_row_qt6Cbw {
margin-bottom: 10px;
margin-top: 10px;
}
div#section-id-template--20779550966098__custom_row_kdtj6y {
margin-top: 10px;
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you very much. Yes the text I could align left myself, I completly missed that very easy function 🙂
@Made4uo-Ribe Sorry to bother you one last time... do you know by any chance how I can change the size and thickness of this subheading font? I would like to have it in light or extra light and a bit bigger.... (picture 1)
I tried so many codes I could find in different forums but nothing seems to work. I only managed to get the subheaders on my Home-Page pictures bigger (pic 2) but besides that nothing changes. Thank you very much for your help!
This is an accepted solution.
Yeah, sure. But I will give you 2 options how to do it.
1. Find this code below in your style.css.
And Change the font-weight: in your desire size.
2nd. Add this code in your style.css.
.subheading.subheading--over {
font-weight: 200;
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!