Hello, I have added this code into the section CSS to adjust the sizing display of the multicolumn content however now it is all aligned to the right and I would like it centered, how can I fix this?
code used:
.multicolumn {
max-width: 80%;
padding-left: 0;
padding-right: 0;
}
Hi @girltimebeauty
Could you share your store URL so we can check?
Hi @girltimebeauty ,
You can try this code,
.multicolumn {
max-width: 80%;
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
text-align: center; /* Optional, if you want the text centered */
}
Can you provide more information because the CSS of the child and parent classes can also have an impact?
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you
1 Like
Please update your code to this
.multicolumn {
max-width: 80%;
padding-left: 0;
padding-right: 0;
margin: auto;
}