Enlarge logo on mobile on Symetry and remove the search bar

Hello there !

I have two questions :

  • I’m looking for a way to enlarge the logo on mobile for the Symmetry theme (Ive found many answers that recommend to edit the scss.liquid but i don’t have this file).

  • I also need to remove the search bar on my website

Thank you very much to the magician who could help on that!

Anne

Ive found the solutions for both (in case its useful for someone else).

Edit Code > Style.Css.Liquid

  • I’m looking for a way to enlarge the logo on mobile for the Symmetry theme (Ive found many answers that recommend to edit the scss.liquid but i don’t have this file).

Insert at the very bottom the following code:

@media (max-width: 800px) {
.logo img {
transform: scale(1.5);
}
}

  • I also need to remove the search bar on my website

Insert at the very bottom the following code:

.search-box {
display: none !important;
}
.mobile-search {
display: none !important;
}