Tiago André
asked 9 years ago

You can disable the display of the Featured 2 and 3 when the resolution is less than 1024px ?

1 Answers
DominicStaff
answered 9 years ago

Hi,
To resolve this issue, you can add the following code to the style.css .

@media(max-width:1024px) { 
.feature-2 {
display: none;
}
.feature-3 {
display: none;
}
}

Hope this helps !

Powered by DW Question & Answer Pro