Re: Capitalizing tags

Solved

How can I capitalize all tags in the Craft theme?

aelitzer
Tourist
35 0 2

Hi,

 

I am using the "Craft" theme and would like to capitalize all of the already created tags.

 

Is there any code that can accomplish this?

 

Thanks in advance!

Accepted Solution (1)
PageFly-Victor
Shopify Partner
7865 1786 3126

This is an accepted solution.

Help me add this code on file theme.liquid

<style>
label.facet-checkbox {
text-transform: capitalize;
}
</style>

 

PageFlyVictor_0-1675131799514.png

 

View solution in original post

Replies 10 (10)

PageFly-Victor
Shopify Partner
7865 1786 3126

Hi @aelitzer 

 

You can use CSS text-transform: capitalize; or text-transform: uppercase; to make text capitalize or you can share the store URL to let me check more.

 

Hope this answer helps.

Best regards,

Victor | PageFly

aelitzer
Tourist
35 0 2

Can you be a bit more specific about what to add where? 

 

https://1ca775.myshopify.com/

 Password: labelshopper

PageFly-Victor
Shopify Partner
7865 1786 3126

You can try this code by following these steps:

Go to Online store => themes => actions => edit code  and add this code on file theme.liquid before tag </body>

 

PageFlyVictor_2-1674750579270.png

 

 

<style>

h2.collage-wrapper-title.h1 {

   text-transform: capitalize;

}

</style>

 

 

PageFlyVictor_3-1674750579379.png

PageFly-Victor
Shopify Partner
7865 1786 3126

You can use devtool to check the class of element that wants to change to capitalize text

to open devtool: Click right mouse + click Inspect 

PageFlyVictor_0-1674750840077.png

 

aelitzer
Tourist
35 0 2

Hi,

I am not trying to capitalize the headers, I am trying to capitalize the tags. See below:

Screen Shot 2023-01-26 at 11.40.32 AM.png

aelitzer
Tourist
35 0 2

Any suggestions @PageFly-Victor ? 

PageFly-Victor
Shopify Partner
7865 1786 3126

Can you share the URL so i can check more

aelitzer
Tourist
35 0 2

https://1ca775.myshopify.com/

 Password: labelshopper

PageFly-Victor
Shopify Partner
7865 1786 3126

This is an accepted solution.

Help me add this code on file theme.liquid

<style>
label.facet-checkbox {
text-transform: capitalize;
}
</style>

 

PageFlyVictor_0-1675131799514.png

 

aelitzer
Tourist
35 0 2

That did the trick. Thanks so much!!