Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 685

Custom CSS For Mobile Devices

$
0
0
Themes » Default » Editing global.css

Replace

Code:
.wrapper {
    width: 85%;
    min-width: 970px;
    max-width: 1500px;
    margin: auto auto;
}

With

Code:
@media only screen and (max-width: 799px) {
   .wrapper {
       width: 100%;
       margin: auto auto;
   }
}

@media only screen and (min-width: 800px) {
   .wrapper {
       width: 600px;
       margin: auto auto;
   }
}

Viewing all articles
Browse latest Browse all 685

Trending Articles