Hi Guys!
can you take a look to my home page? i would like to modify only the image box with caption on MOBILE version. I need to have 2 image box 2 per line, side by side.
is it possible?
thanks for your precious help!
Have a great day
Mario
Hey Mario!
Thank you for using Enfold.
Add this in the Quick CSS field:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .av-flex-cells .av_one_fourth {
padding-left: 0% !important;
padding-right: 0% !important;
width: 50%;
float: left;
}}
Best regards,
Ismael
Hi Ismael,
super! it works
Now i would like to reduse te caption font size cause it’s too big .
Which kind of css can i use?
Thanks a lot for your help!
Cheers
Mario
Hey!
Please add following code to Quick CSS as well
@media only screen and (max-wdith: 767px) {
.av-image-caption-overlay-center { font-size: 14px !important; }}
Cheers!
Yigit
Hi Yigit,
Thanks for your tip but doesn’t work.
Any suggestions?
Cheers
Mario
Hey!
Please add the code suggested above inside the css media query.. The final code should be like this:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .av-flex-cells .av_one_fourth {
padding-left: 0% !important;
padding-right: 0% !important;
width: 50%;
float: left;
}
.av-image-caption-overlay-center { font-size: 14px !important; }
}
Cheers!
Ismael