How To Move Text Drop Down Menu Mobile (Dawn Theme)

Solved

How To Move Text Drop Down Menu Mobile (Dawn Theme)

MMast
Trailblazer
182 1 26

Thanks in advance!

I’m looking to move all of the words over to the left near the edge of the page. I’m looking to be able adjust it to my liking. Example shown below.

IMG_0488.jpeg

https://decemberschild.com

password: dc

Accepted Solutions (2)

Raj-WebDesigne
Shopify Partner
60 16 14

This is an accepted solution.

Add This css In edit Code > base.css File

.menu-drawer__menu-item {
    padding: 1.1rem 1rem !important;
}

If you require further help to optimize your store, please don’t hesitate to reach out.


This contribution will always benefit you and you will get my full help easily and you can contact me easily.


Your Willpower Contribution Link

:- Contribution

Contect On My Mail :-Mail@gmail.com


View solution in original post

Anshul_arora
Navigator
453 129 105

This is an accepted solution.

Hello @MMast ,

I understand you are looking to move the mobile menu item to the left

You can move the mobile menu item using CSS code, you have to implement padding property in that section.

Please add the below-mentioned code for the desired change.

1. Go to Online Store -> Themes -> Click on three dots -> Edit Code.

2. Now, Search and open theme.liquid file

3. Next add the mentioned code at the bottom of the theme.liquid file before </body> tag and save.

<style>
ul.menu-drawer__menu.has-submenu.list-menu li a {
padding-inline-start: 10px !important;
}
</style>


[ Please feel free to change the pixel size of the padding property.]

Output ->

Anshul_arora_0-1713955285561.png

 

I hope the code helps you.

Please share if you have any queries.

Thank you.

Please remember to like and accept the solution to help other store owners.

For Shopify Design & Development | Custom Coding -Visit Here

View solution in original post

Replies 2 (2)

Raj-WebDesigne
Shopify Partner
60 16 14

This is an accepted solution.

Add This css In edit Code > base.css File

.menu-drawer__menu-item {
    padding: 1.1rem 1rem !important;
}

If you require further help to optimize your store, please don’t hesitate to reach out.


This contribution will always benefit you and you will get my full help easily and you can contact me easily.


Your Willpower Contribution Link

:- Contribution

Contect On My Mail :-Mail@gmail.com


Anshul_arora
Navigator
453 129 105

This is an accepted solution.

Hello @MMast ,

I understand you are looking to move the mobile menu item to the left

You can move the mobile menu item using CSS code, you have to implement padding property in that section.

Please add the below-mentioned code for the desired change.

1. Go to Online Store -> Themes -> Click on three dots -> Edit Code.

2. Now, Search and open theme.liquid file

3. Next add the mentioned code at the bottom of the theme.liquid file before </body> tag and save.

<style>
ul.menu-drawer__menu.has-submenu.list-menu li a {
padding-inline-start: 10px !important;
}
</style>


[ Please feel free to change the pixel size of the padding property.]

Output ->

Anshul_arora_0-1713955285561.png

 

I hope the code helps you.

Please share if you have any queries.

Thank you.

Please remember to like and accept the solution to help other store owners.

For Shopify Design & Development | Custom Coding -Visit Here