<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Tabs Section Not Working]]></title><description><![CDATA[<p dir="auto">Hello. I added an additional tab button to my tab section and now it is not working.<br />
The issue can be found on this page: <a href="https://dynamiccelebrationlighting.com/Locations-We-Service" rel="nofollow ugc">https://dynamiccelebrationlighting.com/Locations-We-Service</a></p>
<p dir="auto">Also, is there a way to make it so no tabs are open on page load? I want only a tab to start showing when clicked.</p>
<p dir="auto">Thanks!</p>
]]></description><link>https://community.appdrag.com/topic/900/tabs-section-not-working</link><generator>RSS for Node</generator><lastBuildDate>Sun, 08 Mar 2026 13:22:07 GMT</lastBuildDate><atom:link href="https://community.appdrag.com/topic/900.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 07 Jul 2021 22:13:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Tabs Section Not Working on Fri, 09 Jul 2021 06:11:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/571">@kirk-brown</a> it does meet all your requirement.</p>
<p dir="auto">Add the jQuery code into a jQuery source code and the CSS into a CSS source code.</p>
<p dir="auto"><img src="/assets/uploads/files/1625810984872-bcfa24ad-b49d-4545-af39-d2564f84ecdd-image.png" alt="bcfa24ad-b49d-4545-af39-d2564f84ecdd-image.png" class="img-responsive img-markdown" /></p>
]]></description><link>https://community.appdrag.com/post/3662</link><guid isPermaLink="true">https://community.appdrag.com/post/3662</guid><dc:creator><![CDATA[Wassim]]></dc:creator><pubDate>Fri, 09 Jul 2021 06:11:39 GMT</pubDate></item><item><title><![CDATA[Reply to Tabs Section Not Working on Thu, 08 Jul 2021 23:23:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@wassim</a><br />
I followed your instructions and it seems to not work.<br />
Also, I would like only one tab content area open at a time so if one is alreay open and you click a different button, it will close the first tab content and open a new one. I'm assuming the code above won't achieve this.</p>
]]></description><link>https://community.appdrag.com/post/3661</link><guid isPermaLink="true">https://community.appdrag.com/post/3661</guid><dc:creator><![CDATA[Kirk Brown]]></dc:creator><pubDate>Thu, 08 Jul 2021 23:23:45 GMT</pubDate></item><item><title><![CDATA[Reply to Tabs Section Not Working on Thu, 08 Jul 2021 22:47:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@wassim</a> Where do you add the CSS code? How do you get there?</p>
]]></description><link>https://community.appdrag.com/post/3660</link><guid isPermaLink="true">https://community.appdrag.com/post/3660</guid><dc:creator><![CDATA[Kirk Brown]]></dc:creator><pubDate>Thu, 08 Jul 2021 22:47:53 GMT</pubDate></item><item><title><![CDATA[Reply to Tabs Section Not Working on Thu, 08 Jul 2021 11:19:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/571">@kirk-brown</a> of course yes <img src="https://community.appdrag.com/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=lfk1vimvd74" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://community.appdrag.com/post/3659</link><guid isPermaLink="true">https://community.appdrag.com/post/3659</guid><dc:creator><![CDATA[Wassim]]></dc:creator><pubDate>Thu, 08 Jul 2021 11:19:21 GMT</pubDate></item><item><title><![CDATA[Reply to Tabs Section Not Working on Thu, 08 Jul 2021 10:37:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@wassim</a><br />
Hello. Thanks for this. I will try this later today. Will this still be responsive and display well on mobile?</p>
]]></description><link>https://community.appdrag.com/post/3658</link><guid isPermaLink="true">https://community.appdrag.com/post/3658</guid><dc:creator><![CDATA[Kirk Brown]]></dc:creator><pubDate>Thu, 08 Jul 2021 10:37:01 GMT</pubDate></item><item><title><![CDATA[Reply to Tabs Section Not Working on Thu, 08 Jul 2021 06:15:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/571">@kirk-brown</a> hi, I think your tabs are wrongly configured. But as you can't have no tabs opened I would recommend you to code your entire system :<br />
1 - create the buttons without the tabs plugin<br />
2 - on each button  add a class <code>my-tab-button</code> and a custom attribute <code>data-area="main-line"</code> with the appropriate area inside.<br />
3 - create one row per area and add the class <code>my-tab-content</code> and a custom attribute <code>data-area="main-line"</code> with the appropriate area inside.<br />
4 - on your button go to trigger =&gt; javascript code =&gt; and add this code</p>
<pre><code>$('.my-tab-button').click(function () {
  $(".my-tab-content").removeClass("opened");
  $(".my-tab-content[data-area='"+$(this).attr("data-area")+"']").addClass("opened");
});
</code></pre>
<p dir="auto">5 - add the following css</p>
<pre><code>body:not(.pagebuilder-edition) .my-tab-content:not(:opened) {
  display:none;
}
</code></pre>
<p dir="auto">Note that the <code>body:not(.pagebuilder-edition)</code> is just to still see your items while you're in the pagebuilder.</p>
<p dir="auto">Wish you'll do it successfully <img src="https://community.appdrag.com/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=lfk1vimvd74" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://community.appdrag.com/post/3656</link><guid isPermaLink="true">https://community.appdrag.com/post/3656</guid><dc:creator><![CDATA[Wassim]]></dc:creator><pubDate>Thu, 08 Jul 2021 06:15:35 GMT</pubDate></item></channel></rss>