Hi,
I’m using the stretched layout with the .responsive .container set to a width of 1100px as I don’t want my content full width as per:
@media only screen and (min-width: 1140px) {
.responsive .container {
width: 1100px;
}}
Within this layout I have a 4 column layout with one image in each column.
This works great on large screens and iPad landscape but on iPad portrait and smaller the 4 columns align left rather than in the center
You can see what I mean here: http://physio.digitalessence.net/ with the images of a woman running.
Have I done something silly?
Thanks,
Hi DigitalEssence,
That is the default behaviour, please try the following CSS to fix it:
@media only screen and (max-width: 990px) {
#whatwedoboxes .av_one_fourth .avia-image-container-inner img {
display: table !important;
margin: 0 auto !important;
}
}
Regards,
Rikard
Thanks Rikard, that’s sorted it.
I’ll add this to my Enfold Git hub.
Hedley