• Raysn

    (@schulhilfe)


    Hi @nik00726,

    I just wanted to let you know I found two bugs in the plugin. If it’s relevant, I use the GeneratePress theme.

    1. when activating the plugin it seems that the default CSS rule for the spacing of the <p> tags is overwritten. “margin-bottom” will be changed on the whole website and has to be reset again by manually adding CSS and !important.

    2. this bug only occurs with vertical tab layouts. Certain elements such as <hr> tags are overlaid by the tab container because it has no fixed height.

    My workaround looks like this:

    • Add the following custom CSS to your theme and change the min-height value to fit your contents length:
      .vresp-tabs-list {
      	min-height: 554px !important;
      }
      .vresp-tabs-container {
      	min-height: 552px !important; /* 2px less than vresp-tabs-list value for correct layout */
      }
      .highfix {
      	min-height: 554px; /* same min-height value as vresp-tabs-list */
      }
      
    • Creating a DIV-Container with class .highfix around the actual Tab-Container. To achieve this, one can either insert custom html inside the post / or page or just put the shortcode for the tabs inside a gutenberg block-group and add the class name under Advanced > Additional CSS Class.

    It would be great if these bugs would be fixed within the next update, as the solutions proposed here are rather “quick’n’dirty” and less effective.

    Greets
    Raysn

    • This topic was modified 5 years, 1 month ago by Raysn.
  • The topic ‘2 Bugs discovered’ is closed to new replies.