hello,
I would like to center the text (multiple columns) on my productpage. Is there anyone who can help me with this?
hello,
I would like to center the text (multiple columns) on my productpage. Is there anyone who can help me with this?
Hi @Muselabel ,
Step 1: Go to Shopify Admin β Online Store ->Theme β Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Here is result:
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
Hi @Muselabel ,
You can follow these steps to make the effect
Open Online Store > Theme > Edit Code
Find and open the base.css (or theme.css, custom.css) file
Paste the code snippet below at the bottom of the file and hit save
.multicolumn .title-wrapper-with-link {
justify-content: center;
}
Here is the result
Hope this helps you solve the issue.
Please donβt forget to Like and Mark it as an Accepted Solution if you find this helpful. Thank you!
It worked thank you!