• Resolved Argentum

    (@argentum)


    Tabs on Android Chrome and Default Browser, does not work. The tab links are blue, but does not respond.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Link to your site please?

    Thread Starter Argentum

    (@argentum)

    I found the culprit. I have Formidable Pro forms plugin installed, and that contains a lot of form elements styling and javascript. In Formidable Forms setting I checked “Load Formidable styling: ONLY ON APPLICABLE PAGES” and the problem went away.

    Perhaps this information could be useful for others using Formidable Pro.

    Try wit bootstrap tabs (in post):

    <ul class="nav nav-pills">
        <li class="active"><a data-toggle="tab" href="#sectionA">Section A</a></li>
        <li><a data-toggle="tab" href="#sectionB">Section B</a></li>
         <li><a data-toggle="tab" href="#sectionC">Section C</a></li>
    </ul>
    <div class="tab-content">
        <div id="sectionA" class="tab-pane fade in active">
            <p>Section A content…</p>
        </div>
        <div id="sectionB" class="tab-pane fade">
            <p>Section B content…</p>
        </div>
         <div id="sectionC" class="tab-pane fade">
            <p>Section C content…</p>
        </div>
    </div>

    I hope this helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Tabs on Android Chrome and Default Browser’ is closed to new replies.