Viewing 1 replies (of 1 total)
  • Plugin Author cubecolour

    (@numeeja)

    This occurs for some themes and can be fixed with a simple css fix which depends on the theme used.

    Follow the instructions on the plugin page to exclude the plugin’s css from loading, and add the contents of plugin’s stylesheet to your child theme’s stylesheet (or input the rules into a custom styles plugin) The edit the rule for the .responsive-tabs__list margin:

    .responsive-tabs .responsive-tabs__list {
    	margin: 20px 0 13px 0;
    }

    For a quicker, but not recommended fix, you could just add the rule with greater specificity as below. However if the default stylesheet in the plugin is changed in a later version of the plugin (as is planned for a future version) this may cause issues at that time.

    .responsive-tabs-wrapper .responsive-tabs .responsive-tabs__list {
    	margin: 20px 0 13px 0;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Tabs overlapping into body’ is closed to new replies.