MariaJackson1
6/16/2017 - 3:26 AM

Divi Breakpoints

/* Large Monitors*/
@media ( min-width: 1405px ) {
/* your CSS goes here */
}
 
/* Standard laptops & desktops */
@media ( min-width: 1100px ) and ( max-width: 1404px) {
/* your css goes here */
}
 
/* landscape Tablets */
@media ( min-width: 981px ) and ( max-width: 1099px ) {
/* your css goes here */
}
 
/* Portrait Tablets*/
@media ( min-width: 768px ) and ( max-width: 980px ) {
/* your css goes here */
}
 
/* Landscape Phones */
@media ( min-width: 480px ) and ( max-width: 767px ) {
/* your css goes here */
}
 
/* Portrait Phones */
@media ( max-width: 479px ) {
/* your css goes here */
}