Table not sitting correctly inside content box

Hi

Please see screen shot.

In the table in the accordian, on mobile mode the buttons do not seem to appear in the container in mobile mode. It looks fine in the Pro, but not on the mobile site. Can some one let me know what I have to do to change this so it fits.?

Hi Christopher,

It seems that the padding of the table cells is the reason behind your issue. To get rid of it, please add the following custom CSS code into the Theme Options > CSS.

@media  (max-width: 480px) 
{
    table th, table td 
    {    
            padding: .5em 0.3em !important;
    }
}

Please remember that the above code will work if copied as it is and don’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

Thank you, this seems to have fixed my problem. Cheers :slight_smile:

We’re glad this fixed the issue.

Cheers!

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