Eliminating the white space between columns

Hi,

Im using the 2 col shortcode ([column type=“1/2”] and [column type=“1/2” last=“true”] ) within the accordion element.

But when it goes to mobile-the one column format, i get a large space between the list. How do i remove the space so the list looks even?

Thanks!

Hi there,

Please add this code in the Global CSS in X > Theme Options > CSS:

@media (max-width: 480px) {
    .x-column ul {
        margin-bottom: 0 !important;
    }
}

Here are some related links for further reading:

Hope this helps.

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