Home › Forums › Basel support forum › HTML too heavy › Reply To: HTML too heavy
November 13, 2018 at 1:56 pm
#89237
Bogdan Donovan
Keymaster
Custom CSS for desktop:
@media (min-width: 992px) {
}
Custom CSS for tablet:
@media (max-width: 991px) and (min-width: 768px) {
}
Custom CSS for mobile landscape:
@media (max-width: 767px) and (min-width: 481px) {
}
Custom CSS for mobile:
@media (max-width: 480px) {
}
Regards