Home Forums WoodMart support forum REMOVE TOP BAR Reply To: REMOVE TOP BAR

#308245

Bogdan Donovan
Keymaster

Hi,

This issue is caused by your slider background image that can’t serve all possible slider aspect ratio. You can fix this issue with different approaches:

1. To make your slider text and person visible at the same time, separate your text in to the new layer in slider content and align the person background image to the right side via slide “Background position” setting.

2. Add the following custom code to the Global Custom CSS area in Theme Setting to change slider height to desired device width, where it can match your background image aspect ratio.

@media (max-width: 1200px) {
   .website-wrapper #slider-63 .wd-slide {
      min-height: 620px;
   }
}

max-width: 1200px – desired laptop width
min-height: 620px – slider height

Kind Regards