Dropdown Filter Menu Background Change | Crave Theme Mobile & slideshow shop button size

hey guys i was wondering if anyone could help me figure out the coding for these two issues.

  1. Mobile Dropdown Filter Menu Background Change i would like it to be transparent and have no white, or a cleaner look please.

issue:

  1. slideshow shop button size i would like to make it smaller

issue:

thank you!

1 Like

Hi @Delta-Buddy

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

efewbu

2 Likes

Thanks for the info,

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

for the #1 is it like this:

@media only screen and (max-width: 989px){
div#menu-drawer {
    background: transparent !important;
    filter: none !important;
    border: none !important;
}
}

Or like this.

@media only screen and (max-width: 989px){
div#menu-drawer {
   background-color: rgba(255, 255, 255, 0.5) !important;
    filter: none !important;
    border: none !important;
}
}

And Save.

#2.

@media only screen and (max-width: 989px){
a.button.button--primary {
    min-height: 3.5rem !important;
    padding: 0 2rem !important;
}
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

2 Likes

Thank you so much!!!

2 Likes