What's your biggest current challenge? Have your say in Community Polls along the right column.

how to reduce padding in mobile navigation menu - brooklyn theme ?

how to reduce padding in mobile navigation menu - brooklyn theme ?

7kingodmsla
Trailblazer
222 0 39

this is my current store menu , i want to remove padding between navigation links , also i want to change background color from gray to black thank you 

 

store url is 

https://7kingdomsbar.myshopify.com/

password godgod24

my current storemy current store

i want my menu to look like this 

exampleexample

Replies 10 (10)

7kingodmsla
Trailblazer
222 0 39

DelightCart
Shopify Partner
1264 83 157

@7kingodmsla Go to assetes/timber.scss.css and paste below css at bottom of file.

 

.mobile-nav__item a, .mobile-nav__toggle button
{
padding: 0px 15px  0px 15px !important;
}
Delight Cart - It's time to turn your visitors into loyal shoppers! 

Delight Loyalty - Increase repeat sales quickly and build lifelong customers loyalty.
7kingodmsla
Trailblazer
222 0 39

@DelightCart 

how to remove the extra between main navigation links @DelightCart 

 

Screen Shot 2022-04-18 at 3.14.44 AM.png

7kingodmsla
Trailblazer
222 0 39

@DelightCart how can i increase the text size of menu not bottom links 

LitCommerce
Astronaut
2860 684 754

Hi @7kingodmsla,

Please add code:

.mobile-nav__item:not(.mobile-nav__item--secondary) a {
    font-size: 25px !important;
}

You can change the size to your liking.

If it helped you solve your issue, please mark it as a solution. Thank you and good luck.

LitCommerce - The Most Simple & Affordable Multi-channel Selling Tool.
Effortlessly sell on biggest marketplaces like Amazon, Etsy, eBay, Facebook etc with bulk listing tool, real-time sync & smart order management. Use LitCommerce free for 1-year now!
LitCommerce
Astronaut
2860 684 754

Hi @7kingodmsla,

I checked and you changed it successfully?

If it helped you solve your issue, please mark it as a solution. Thank you and good luck.

LitCommerce - The Most Simple & Affordable Multi-channel Selling Tool.
Effortlessly sell on biggest marketplaces like Amazon, Etsy, eBay, Facebook etc with bulk listing tool, real-time sync & smart order management. Use LitCommerce free for 1-year now!
7kingodmsla
Trailblazer
222 0 39

hello this has changed the size of font , i still would like to reduce the space between the main navigation links , i want no space , how can i achieve this ? @LitCommerce 

7kingodmsla
Trailblazer
222 0 39

@LitCommerce please refer to first image

LitCommerce
Astronaut
2860 684 754

Hi @7kingodmsla,

Please add code:

 

.mobile-nav__item:not(.mobile-nav__item--secondary) a {
    line-height: normal !important;
}

 

If it helped you solve your issue, please mark it as a solution. Thank you and good luck.

LitCommerce - The Most Simple & Affordable Multi-channel Selling Tool.
Effortlessly sell on biggest marketplaces like Amazon, Etsy, eBay, Facebook etc with bulk listing tool, real-time sync & smart order management. Use LitCommerce free for 1-year now!
7kingodmsla
Trailblazer
222 0 39

@LitCommerce ???