how to get this text after icon as shown in image
@Emiway , You can try:
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 @Emiway ,
- Go to Online Store → Theme → Edit code.
- Open your theme.liquid file
- In theme.liquid, paste the below code before
or the below one
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hi @Emiway
Step 1. Go to Admin → Online store → Theme > Edit code
Step 2. Find the file theme.css. Search for the following CSS snippet
.text-with-icons__item {
display: flex !important;
align-items: center !important;
}
Result
If it helps you, please like and mark it as the solution.
Best Regards
- Here is the solution for you @Emiway
- Please follow these steps:
- Then find the theme.liquid file.
- Then add the following code at the before tag and press ‘Save’ to save it.
- Here is the result you will achieve:
- Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.
Hello @Emiway , Please follow these steps to add this CSS code:
- Go to your Online Store
- Click on “Themes”
- Select “Edit code”
- Open your CSS file. If you have a custom CSS file, open that instead.
- If you can’t find your custom CSS file, open “base.css”
- Add the following code at the end of the file.
.text-with-icons__item.snap-center {
display: flex;
align-items: center;
justify-content: center;
}
See the output in the screenshot below,
Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.





