Hi
I am trying to eliminate the home page, and have my site load directly into collection all. Additionally, a menu that displays on collection (web browser), will not display on mobile browser. I think it is a screen size issue. How can I adjust?
Hi
I am trying to eliminate the home page, and have my site load directly into collection all. Additionally, a menu that displays on collection (web browser), will not display on mobile browser. I think it is a screen size issue. How can I adjust?
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Hi @Neighbourhoodst ,
#1: Go to layout > theme.liquid file, find ‘content_for_layout’ and change code:
Code:
{%- if request.page_type == 'index' -%}
{%- else -%}
{{ content_for_layout }}
{%- endif -%}
#2: Menu: please describe it more, I will help you check and change it.
Hi Ketan,
Thank you - it is expendables.shop
Thanks LitExtension.
For the menu, if you look at our website on a desktop, we have a side menu and a top menu.
Currently, the top bar will only allow you to access the sub-menu when the browser gets down below 500px. I would like to hide the top bar menu until the browser size gets below 500px.
Hi @Neighbourhoodst ,
Go to Assets > theme.scss.liquid and paste this at the bottom of the file:
nav#AccessibleNav{
display: none;
}
If it helped you solve your issue, please mark it as a solution. Thank you and good luck.
This has done it! Thank you.