Filter section and sort section to uppercase

Filter section and sort section to uppercase

Sivadarshan
Shopify Partner
377 2 81

How to make all the filter section and sort section completely transform to uppercase and sticky

Screenshot 2024-10-25 150725.png

Replies 4 (4)

Rahul_dhiman
Shopify Partner
833 158 176

Hello @Sivadarshan 
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.

span.mobile-facets__open-label.button-label.small-hide {
text-transform: uppercase;
}
.facet-filters__sort {
text-transform: uppercase;
}
.facet-filters__field {
text-transform: uppercase;
}
h2.product-count__text.text-body {
text-transform: uppercase;
}

result
34.png

If this was helpful, hit the like button and accept the solution.
Thanks

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

ZestardTech
Shopify Partner
6148 1099 1475

Hello @Sivadarshan 

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

 

.mobile-facets__open-label {
text-transform: uppercase;
}
.facet-filters__field {
text-transform: uppercase;
}
.facet-filters__field .select__select, .mobile-facets__sort .select__select {
text-transform: uppercase;
}
span#ProductCount {
text-transform: uppercase;
}

 

ZestardTech_0-1729850174244.png

 

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

EvinceDev
Shopify Partner
121 13 13

Hello @Sivadarshan , Try this 

span.mobile-facets__open-label.button-label.small-hide, 
.facet-filters__sort,
.facet-filters__field, 
h2.product-count__text.text-body  {
text-transform: uppercase;
}

 

Shopify Theme Advanced Backend Developer and Debugger
Want to modify or develop new app, Hire us.
If our Answer is helpful then please Like and Accept Solution!
I am an eCommerce and Marketing Technology consultant based in India.
To inquire about consulting work availability, You can reach me on Skype by live: rahul.evince or mail on partners@evincedev.com.
Shopify Apps URL :- https://apps.shopify.com/partners/gemfind1
Customization on Shopify Theme | Shopify App Development | SEO & Digital Marketing
Sivadarshan
Shopify Partner
377 2 81

It's working thanks, but when I tried to change the font size, the sort section alone not changing the size. 

 

Screenshot 2024-10-25 184152.png