Solved

How to change menu display on front page- venture theme- desktop only

gadjetsgalore
Tourist
11 0 5

Hello, I am looking to change my menu layout in the home page of my store. I currently have the hamburger menu on the side of the screen. I would like to change the layout so the collections are displayed from left to right. Is there a way to implement this, but only on desktop? I would like to keep the side menu on mobile due to its phone-friendly layout.

 

Here is my store link for reference: https://www.sportsoutletexpress.com/

 

Accepted Solution (1)
KetanKumar
Shopify Partner
36839 3635 11972

This is an accepted solution.

@gadjetsgalore 

thanks for confirm please add this code

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

@media only screen and (min-width: 1200px) {
button#SiteNavCompressed {
    display: none;
}
ul#SiteNav {
    display: block !important;
}
.site-nav__link {
font-size: 9px;
padding: 5px;
}
}

 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing

View solution in original post

Replies 6 (6)

KetanKumar
Shopify Partner
36839 3635 11972

@gadjetsgalore 

sorry for that issue its theme default menu functionality if long menu item so that was convert hamburger menu  you have reduce menu item and font size automation change horizontal menu

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
gadjetsgalore
Tourist
11 0 5

Hi KetanKumar,

 

Could you show me where in my code I would either have to edit or add code to change the menu layout and font size?

KetanKumar
Shopify Partner
36839 3635 11972

@gadjetsgalore 

your css code 

see that view 

KetanKumar_0-1632175367063.png

 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
gadjetsgalore
Tourist
11 0 5

Yes! this is what I am looking to do on desktop only. can you send me the code?

KetanKumar
Shopify Partner
36839 3635 11972

This is an accepted solution.

@gadjetsgalore 

thanks for confirm please add this code

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

@media only screen and (min-width: 1200px) {
button#SiteNavCompressed {
    display: none;
}
ul#SiteNav {
    display: block !important;
}
.site-nav__link {
font-size: 9px;
padding: 5px;
}
}

 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
gadjetsgalore
Tourist
11 0 5

Thank you! This worked great! I have marked it as a solution.