Hello,
Try to insert the following CSS codes into Customizing->General->Additional CSS:
@media only screen and (min-width: 992px) {
#frontpage-boxes{
width:100%!important;
}
#frontpage-boxes .fbox-1,
#frontpage-boxes .fbox-2,
#frontpage-boxes .fbox-3,
#frontpage-boxes .fbox-4
{
width:25%!important;
}
}
@media only screen and (max-width:768px) {
#frontpage-boxes .fbox-1,
#frontpage-boxes .fbox-2,
#frontpage-boxes .fbox-3,
#frontpage-boxes .fbox-4
{
width:100%!important;
}
}
Regards
Wow perfect! thanks for the fast support
I’m glad it works.
Thank you for using our theme.
Best Regards
Hi, @katz123!
I have visited your website and found that you also need to insert the following code additionally (it’s for the medium screen sizes devices)
@media only screen and (max-width: 991px) and (min-width: 769px) {
#frontpage-boxes .fbox-1,
#frontpage-boxes .fbox-2,
#frontpage-boxes .fbox-3,
#frontpage-boxes .fbox-4
{
width:50%!important;
}
}
Regards