8.4

Permalink
I added 4 columns to a page and put an image in each column.
It stays 4 across until 768px and then it stacks ( one column ).. I'm trying to get to
change to two columns until 480px then stack .
Any Ideas ??

Thanks
Bob

rdealmeida
 
Steevb replied on at Permalink Reply
Steevb
Which theme r u using?
rdealmeida replied on at Permalink Reply
rdealmeida
I'm using the Cloneamental theme
Steevb replied on at Permalink Best Answer Reply
Steevb
Try by opening 'css/bootstrap-modified.css' and past snippet below at end of code:
@media (max-width:768px){.col-sm-3{width:50% !important;float: left}}
@media (max-width:480px){.col-sm-3{width:100% !important}}
rdealmeida replied on at Permalink Reply
rdealmeida
Perfect !!
Thanks

Bob