Hello Guys,
Actually i want Small width of website as below, so i have changed the css within child theme as below. but the problem now its not responsive for mobiles. so what i need to do ? Thank You
.responsive .container .nine.units {
width: 600px;
}
.content, .sidebar {
padding-top: 20px;
}
.responsive #top.boxed {
width: 970px;
}
.responsive .container .twelve.units {
width: 870px;
}
/*this is the menu and footer*/
.responsive .container {
width: 870px;
}
Hey ppcinc!
Please add media queries to your custom CSS code as following, so your code will be only applied on screens bigger than 768px
@media only screen and (min-width: 768px) {
.responsive .container .nine.units {
width: 600px;
}
.content, .sidebar {
padding-top: 20px;
}
.responsive #top.boxed {
width: 970px;
}
.responsive .container .twelve.units {
width: 870px;
}
/*this is the menu and footer*/
.responsive .container {
width: 870px;
}
}
Regards,
Yigit
Great Man it works :-)
Cheers.
Mike