I’m currently using the theme: DAWN
I’d like to have 4 things done:
1. Custom Button removed (Mobile only) - I’ve added the following code in the base.css, but I’d like to HIDE IT on mobile. How do I do this?
.header .header__inline-menu .list-menu > li:last-child > a{
background: #095448;
border-radius: 10px;
text-decoration: none !important;
padding-left: 30px;
padding-right: 30px;
color: #fff!important;
}
.header .header__inline-menu .list-menu > li:last-child > a span {
text-decoration: none;
color: #fff;
}
body .header__inline-menu .list-menu > li:last-child > a:hover {
background: #DDD7D3;
}
.menu-drawer__navigation .menu-drawer__menu > li:last-child {
padding: 0rem;
}
.menu-drawer__navigation .menu-drawer__menu > li:last-child a{
background: #095448;
border-radius: 10px;
color: #fff!important;
justify-content: center;
}
2. Enlarge logo (Mobile only) - The logo on mobile is tiny, is there any way I can increase the size only on mobile?
3. Move Header Hero text lower (Mobile only) - As you can see, the Header’s Hero text is touching the navigation bar too much, how do I fix this to lower it so theres some padding on top but only for mobile, it’s perfect on desktop. I used the following code in the theme.liquid
-
{% if template == ‘index’ %}
-
.shopify-section-group-header-group.announcement-bar-section{
-
height: 5px;
-
}
-
.header-wrapper{
-
position: absolute;
-
width: 100%;
-
background: transparent;
-
}
-
.header-wrapper .header{
-
margin-top: 20px;
-
}
-
{% endif %}
-
There’s a slight outline seen on the first photo under the header. How do I hide this on both desktop and mobile?
The site URL and password are the following:
https://kanzen-farming.myshopify.com/
Password: kanzenfarming2024
Thank you so much for your help!



