Home Forums Basel support forum HTML too heavy Reply To: HTML too heavy

#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