Support › Forums › Flex Theme › Problem with smartphone view of website › Reply To: Problem with smartphone view of website
November 5, 2015 at 4:21 pm
#636
Moderator
Replace this CSS (line no 608)
.content,
.home-bottom-left {
float: right;
width: 693px;
}
WITH
.content,
.home-bottom-left {
float: right;
width: 600px;
}
Also you will add this
@media only screen and (max-width: 960px ) {
body {
margin-left: 7%;
margin-right: 7%;
}
}
@media only screen and (max-width: 800px ) {
body {
margin-left: 1%;
margin-right: 1%;
}
}