Hi guys,
Would like to control the text padding in About us page to be aligned with images.
Thank you
Hi guys,
Would like to control the text padding in About us page to be aligned with images.
Thank you
@Alliance
Hello,
.medium-up--push-one-twelfth p:first-of-type {
width: 82%;
margin: 20px auto;
}
Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
Like This
.grid__item.medium-up--five-sixths p {
width: 80%;
margin: 0 auto;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
@oscprofessional
add below css
.medium-up--push-one-twelfth p:first-of-type {
width: 79% !important;
margin: 20px auto;
}
@Alliance
Hello,
p:last-child {
width: 83%;
margin: 0 auto;
}
p:nth-last-child(2) {
width: 83%;
margin: 20px auto;
}
.rte ul {
width: 83%;
margin: 0 auto;
}
.rte p:nth-child(3n+3) {
width: 83%;
margin: 10px auto;
}
Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
Like This
It affected all other pages.