elementor custom css for mobile

Solutions on MaxInterview for elementor custom css for mobile by the best coders in the world

showing results for - "elementor custom css for mobile"
Tom
16 Jan 2020
1/*For browser/screen widths less than 768px*/
2@media screen and (max-width: 768px) {
3    .container {
4        max-width: 100%;
5    }
6    .content {
7        width: 100%;
8    }
9    .sidebar {
10        width: 100%;
11    }
12}
13