You can disable the display of the Featured 2 and 3 when the resolution is less than 1024px ?
1 Answers
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 !
Please login or Register to submit your answer