Tagged: responsive
Dear Kriesi team,
thanks for the good word. I was wondering how it is possible to float the image next to the text (simple so far) _and_ remain the respnsive design. Obviously this is what the theme does all over. But in default the Blog entries in the avia layout architect are the following: Image- Next Line: Excerpt. I did the float as below, however the text does not goes below the image when narrowing the window. E.g. this applies the the first three entries here: http://www.incosan-portal.de/blasenschwaeche-bei-frauen/
.big-preview.single-big {
float: left;
margin-right: 10px;
width: 180px;
height: 180px;
}
Thanks a lot!
Andi
Hi Andi!
Change your code to:
@media only screen and (min-width: 768px) {
.big-preview.single-big {
float: left;
margin-right: 10px;
width: 180px;
height: 180px;
}
}
Cheers!
Josue
I could have thought of this one ;) Thanks a lot!