Hi –
The widgets on my site look weird on an iPad (horizontal) or when the browser is shrunk. It seems that the widgets switch to two rows – any way to prevent this?
Hi Pointbreakd!
Can you please post a screenshot and show the changes you would like to make? I checked your website and could not see such issue. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.
Regards,
Yigit
Posted in private – the widgets become two rows.
Hi!
what do you want instead? there is not enough space for 4 widgets in just on row. Can you provide us a mockup showing what you want to achieve please?
Cheers!
Andy
Hi!
try something like this in Quick CSS field:
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: portrait) {
.flex_column.av_one_fourth.first.el_before_av_one_fourth {
left: -33px;
width: 29%;
}
.flex_column.av_one_fourth.el_after_av_one_fourth.el_before_av_one_fourth {
width: 21% !important;
clear: none !important;
}}
and adjust as needed.
Cheers!
Andy