Currently utilizing the Avada Fusion Theme, my ability to edit core theme HTML files is limited.
Fortunately, I do have access to Custom CSS.
The challenge I am facing involves adjusting the display of the columns to appear as 2x3 instead of 1x6 on mobile devices with a screen size under 800px:
See IMAGE for visual reference
To view the issue in action (dated June 20th, 2017), please visit the following page and switch to mobile view:
Visit https://zeralynx.co.uk
Below is the snippet of CSS code that I'm using; note that all 6 columns share the same ID selector "home-product-tiles":
@media only screen and (max-width: 800px) {
#home-product-tiles {
width: 47% !important;
display: inline !important;
float: left !important;
margin-right: 2% !important;
overflow: hidden !important;
}
}
The issue lies in the fact that the 4th column (initially the first in the second row on desktop view) fails to align properly next to the 3rd column (last in the first row on desktop view).
Your assistance in resolving this matter would be greatly appreciated. I believe it's a simple fix!
Sincerely, Zach