probably, do you have a link to an example?
Hi
Very crudely I used the below to make it happen. Not sure if it’s ok for all, but better than alternative so far.
The clear:both; and float left seemed to be critical.
@media only screen and (max-width: 480px) {
.bsp-center
{
clear:both;
width: 100%;
max-width: 100%;
float: left;
text-align: left;
margin-top: 10px;
}
.bsp-one-half
{
float: left;
width: 48%;
margin-right: 4%;
}
.bsp-one-third
{
width: 30.66%;
float: left;
margin-right: 4%;
position: relative;
}
}
I used it here:
http://www.nowyouhearit.com/home/forums/forum/music-and-things-that-play-it/
it’s a wip but you may have to register to see it.
Haider
@haiderkb
Tested your code, and it works great, and I only did one small change – I added a
margin-bottom : 10px;
to the .bsp-center so it is lifted from the next line.
I’ll release a new version shortly.
Thanks again !!