Mobile issues with columns

Hi there,
we have two issues with our website test.palimeovocie.sk on mobile version. As you can see below column separators are in the left corner so is it possible to disable them on mobile version or make them horizontal for each section. Second thing is that heading “DOPRAVA ZADARMO” is not in the same row as icon.

Thanks a lot guys
Michael

Hi Michael,

Thanks for reaching out.
It is column border which showing in that way while the columns are in a separate row, it has been found that it goes in a separate row for the 1200px width. I would suggest you add the following custom CSS code into the ELement CSS of the parent Row of the columns to get rid of the border below 1200px screen size. You may need to adjust the screen size within the media query for 1200px.

@media  (max-width: 480px) 
{
    $el .x-col
    {
        border:none;
    }
}

Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes that means we can’t fix it in case it conflicts with something on your site nor will we enhance it.

Thanks

Great.
Thanks a lot

Hi Michael,

Glad that we are able to help you.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.