Bullet Theme Reduce Empty Blocks

Hi @ouani

Do you mean like this?

If it is check this one.

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.
x-cell#Slide-template--18202571473145__main-35343534719225 {
    outline: none;
    height: 100%;
}

@media only screen and (min-width: 1400px) {
    x-flex#Slider-Gallery-template--18202571473145__main {
        height: 100vh;
    }
}

@media only screen and (max-width: 1399px) and (min-width: 749px) {
    x-flex#Slider-Gallery-template--18202571473145__main {
        height: 70vh;
    }
}

.text.rte p:nth-child(1), 
.text.rte p:nth-child(3), 
.text.rte p:nth-child(9) {
    display: none;
}
  • And Save.

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