Tab Content Disappears
-
I am building a contact form and inserting my own code into it, i want the boostrap tabs inside the contact form. This contact form sits in a tab component courtesy of Themify Builder:
https://themify.me/docs/builder-modules#module-tab
Everything works as it should in the bootstrap tabs apart from one problem, when i click on the themify tabs my content inside my bootstrap tabs vanishes. My code looks like this:
<div class="col-full first tb-column tb_164_column module_column_0 module_column"> <div class="tb-column-inner"> <!-- module tab --> <div id="tab-164-1-0-1-164-0" class="module module-tab tab-164-1-0-1 ui vertical default "> <div class="builder-tabs-wrap"> <div class="row"> <div class="col-lg-12 col-md-12 col-xs-12 col-sm-12"> <div class="osc-res-tab tabbable exp-2 osc-tabs-left"> <div style="clear:both;width: 100%;"> <ul class="nav osc-res-nav nav-tabs osc-tabs-left-ul" id="oscitas-restabs-3-ert-with-post-display-plugin-76072"> <li class="active"> <a href="#ert_pane3-0" data-toggle="tab">SQUARE</a> </li> <li> <a href="#ert_pane3-1" data-toggle="tab">RECTANGLE</a> </li> <li> <a href="#ert_pane3-2" data-toggle="tab">ROUND</a> </li> </ul> </div> <div style="clear:both;width: 100%;"> <!-- TAB CONTENTS --> <ul class="tab-content" id="oscitas-restabcontent-3-ert-with-post-display-plugin-76072" style="margin-left: 27px"> <li class="tab-pane active" id="ert_pane3-0"> <p>test</p> </li> <li class="tab-pane" id="ert_pane3-1"> <p>test2</p> </li> <li class="tab-pane" id="ert_pane3-2"> <p>test3</p> </li> </ul> </div> </div> </div> </div> </div> <!-- /module tab --> </div> <!-- /.tb-column-inner --> </div> </div> <p>Your Name (required)<br /> [text* your-name] </p> <p>Your Email (required)<br /> [email* your-email] </p> <p>[submit "Send"]</p>I have a suspicion it is to do with the tab content div not displaying the content correctly and possibly not returning to an active state?
The topic ‘Tab Content Disappears’ is closed to new replies.