I’ve put this code in my theme.liquid file:
body {
direction: rtl;
text-align: right;
}
and I want it to apply everywhere except in the home page, I would like very much if someone can help me with that
Thanks in advance
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the tag
{% if template.name != 'index' %}
{% endif %}
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Thats great but the problem is that when I move to another page in my site the header icons flips and everything rearranges in the header, maybe we can exclude this from the header fully as well?