New Shopify Certification now available: Liquid Storefronts for Theme Developers

Increase font size of the mobile filter menu items (Dawn 10.0 Theme)

Solved
bet
Shopify Partner
106 8 28

filter font larger.png

 

On the mobile filter menu for collection page products, I would like to make the font size larger on the filter item labels (main and submenu items labels)

 

What css / html code changes are required to do this on the Shopify Dawn 10.0 theme at my website:

 

BuyExcelTemplates.com

 

Thank you.

I use Shopify to sell Digital Downloads ❤️
• Top Rated Excel Templates
• Find your perfect Spreadsheet

Accepted Solution (1)
Dan-From-Ryviu
Shopify Partner
5679 1047 1073

This is an accepted solution.

Hi @bet 

 

Please add this code at the bottom of your base.css file 

.mobile-facets__main {
font-size: 16px !important;
}

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

View solution in original post

Replies 5 (5)
Moeed
Shopify Partner
3051 761 925

Hey @bet 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 767px) {
.mobile-facets__summary {
    font-size: 20px !important;
}
}
</style>

RESULT:

Moeed_0-1698992981415.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

Need a Shopify developer? Chat on WhatsApp


- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
websensepro
Shopify Partner
784 105 105

Hi, @bet.

 

Go to Online Store -> Themes -> Edit code.
Go to Assets folder -> Base.css file.
Add the following code at the bottom of the file.

 

@media (min-width: 320px) and (max-width: 767px) {

.mobile-facets__summary span {
    font-size: 20px;
}
}

 

Result:

websensepro_0-1698996304957.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution.

 

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here
Dan-From-Ryviu
Shopify Partner
5679 1047 1073

This is an accepted solution.

Hi @bet 

 

Please add this code at the bottom of your base.css file 

.mobile-facets__main {
font-size: 16px !important;
}

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

bet
Shopify Partner
106 8 28

@Dan-From-Ryviu  Thank you for your help.

I use Shopify to sell Digital Downloads ❤️
• Top Rated Excel Templates
• Find your perfect Spreadsheet

Dan-From-Ryviu
Shopify Partner
5679 1047 1073
Very welcome

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now