Brooklyn how delete overley from slideshow only from mobile

Brooklyn how delete overley from slideshow only from mobile

www.designkey.us

@ManouselisJohn

Please Add this CSS to your css file

@media (max-width:545px){
    .slideshow__overlay:before{
    position: initial; !important
}
}

Thanks!

it dont work when i put the code the text come up to the photo and its like it is broken

@ManouselisJohn

text already hidden for mobile version

No text is under photo at mobile version i want it to stay there but i want to delete the overley for mobile version

Hi @ManouselisJohn ,

You can follow the below steps:

  1. Go to Online Theme → edit code → Asset → theme.css
  2. add the following CSS code snippet to the end of the file
@media (max-width:545px){
  .hero__text-wrap {
    display: none!important;
  }
}

PS: please use @ to mention me because I turn off email notifications.

My mistake. It should be theme.scss.css, not theme.css.