Home Forums WoodMart support forum slider behind the menu on some screen sizes (electronics theme) Reply To: slider behind the menu on some screen sizes (electronics theme)

#81432

Artem Temos
Keymaster

Hi,

Try to edit your WPBakery column that contains slider and add this CSS class to it custom-slider-width. Then, put the following snippet to the custom CSS area

@media(max-width: 1200px) and (min-width: 1024px) {

.vc_row .custom-slider-width {
	margin-left: 270px;
	width: calc(100% - 270px);
}
}

Regards