Aloha,
I have a color section with two 1/2 columns in the following address. I want to make both columns appear 100% width on mobile view only. Also I want to remove the extra white space from below each column. I have tried the following code and some others from various posts here but it didn’t work.
@media only screen and (max-width: 768px) {
#monthly_top av_one_half {
margin-bottom: 0 !important;
margin-top: 0 !important;
padding: 0 !important;
width: 100% !important;
}}
Do you have any idea? @yigit
Hey afarahani,
This issue seems to have been fixed. Were you able to figure it out?
Best regards,
Jordan Shannon
not really. That is exactly what I am asking for! :)
Hi,
Perhaps I am misunderstanding. Is this not 100% on mobile? https://snag.gy/LeX7zI.jpg
Best regards,
Jordan Shannon
Hi @Jordan,
Thanks for the follow up. I am trying to extend the images to the edge of the screen and eliminate the white area you can see on both sides. Also as you can see there is a white space between the first image (my left column) and the second image which is inserted in the right column. The same white space exist after the third image (second column).
I hope I was able to clarify the issue.
Thanks.
Hi,
Add the following:
@media only screen and (max-width: 767px){
#monthly_top.avia-section .container{
min-width:100%!important;
}
#monthly_top.avia-section .flex_column {
margin-bottom:0px!important;
}
}
Best regards,
Jordan Shannon