How do I remove the black box blocking customer access on my homepage?

theres a black box that isnt allowing my customers to shop.

how do i get rid of this?

Hey @meleciov ,

It seems like you have added a popup to this page which is not working as expected you need to disable. if you don’t know how to do that you can simply add below CSS to your code.

Go to online store > actions > edit code > assets > theme.scss.css paste the below code at very bottom of this file.

div#smsbump-form-38079 {
    display:none;
}

If you have any questions or need any help don’t hesitate to contact just send me direct message.

@meleciov
Hello,

#smsbump-form-38079 {
	display: none;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

is this correct?

&.mfp-chevron-left {
    left: 55px;

    &:before {
      @include transform(rotate(-135deg));
    }
  }
  #smsbump-form-38079 {
	display: none;
}
}

@meleciov

No, paste it after end of curly braces

&.mfp-chevron-left {
    left: 55px;

    &:before {
      @include transform(rotate(-135deg));
    }
  }
  
}
#smsbump-form-38079 {
	display: none;
}
1 Like