Broadcast Theme - hide the image on the subcollection menu

Hello

I would like to make the navigation a little neater and hide the subcollection images on my collection page - have just the title appear

https://thebodyshop.ca/collections/gifts

hey @TBS2023 plz share the screen short that page that you want to hide it

Hi @TBS2023 ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.mega_menu_img img {
    display: none !important;
}

Thanks!

it is not the mega menu but the subcollection

Hey , to hide specifically just the subcollections can you try the following?

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.subcollections {
  display: none !important;
}
  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.subcollection__item {
    position: relative;
    height: 59px !important;
    overflow: hidden;
    z-index: 0;
}

.subcollection__link {
height: 58px !important;
}

.subcollection__image img{
display: none !important;
}

p.subcollection__title.h4 {
    color: black !important;
}