<?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[How do I make the tabs large and scrollable?]]></title><description><![CDATA[<p dir="auto">Ok, so my Opera browser just updated out of the blue to some fancy new version, and it's all a mess. I had a lot of tabs opened, like over 50, and I was able to scroll through them by clicking the arrows on the left and right side of the tabs.<br />
Now all the tabs are tiny and there are no scrollable arrows. This is awful. Please tell me how to fix this. Opera was one of my main browsers.</p>
]]></description><link>https://forums.opera.com/topic/64920/how-do-i-make-the-tabs-large-and-scrollable</link><generator>RSS for Node</generator><lastBuildDate>Thu, 18 Jun 2026 05:53:02 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/64920.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 01 Aug 2023 10:42:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How do I make the tabs large and scrollable? on Fri, 01 Sep 2023 19:13:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/597554">@sibcha</a><br />
Yes, it does help !<br />
Thanks a lot<br />
Merci mille fois</p>
]]></description><link>https://forums.opera.com/post/325220</link><guid isPermaLink="true">https://forums.opera.com/post/325220</guid><dc:creator><![CDATA[jeando7509]]></dc:creator><pubDate>Fri, 01 Sep 2023 19:13:00 GMT</pubDate></item><item><title><![CDATA[Reply to How do I make the tabs large and scrollable? on Wed, 30 Aug 2023 18:57:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/580231">@spikenard</a> Hi. I had similar problem but this post explained everything perfectly to me.</p>
<p dir="auto"><a href="https://www.askvg.com/tip-enable-tab-scrolling-in-opera-one-version-100-and-later/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.askvg.com/tip-enable-tab-scrolling-in-opera-one-version-100-and-later/</a></p>
<p dir="auto">Now I'm able to scroll through my tabs again.<br />
Hope this helps.</p>
]]></description><link>https://forums.opera.com/post/324870</link><guid isPermaLink="true">https://forums.opera.com/post/324870</guid><dc:creator><![CDATA[Sibcha]]></dc:creator><pubDate>Wed, 30 Aug 2023 18:57:39 GMT</pubDate></item><item><title><![CDATA[Reply to How do I make the tabs large and scrollable? on Thu, 17 Aug 2023 23:00:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/586741">@tracyberge</a><br />
Hi Tracy,<br />
Thanks for getting back to me. But why should I need to learn HTML, or CSS, or whatever just to make the Opera browser do what it already did for years? I appreciate your knowledge but this isn't the help that I need. I just need the Opera developers to fix the product that they broke. I'm not going to mess with the coding on my laptop and wouldn't expect anyone else to either. I'm not a developer, I'm an end user. Currently a very frustrated end user.<br />
Thank you for your kindness and your time.</p>
]]></description><link>https://forums.opera.com/post/323130</link><guid isPermaLink="true">https://forums.opera.com/post/323130</guid><dc:creator><![CDATA[spikenard]]></dc:creator><pubDate>Thu, 17 Aug 2023 23:00:42 GMT</pubDate></item><item><title><![CDATA[Reply to How do I make the tabs large and scrollable? on Thu, 17 Aug 2023 14:02:52 GMT]]></title><description><![CDATA[<p dir="auto">To make tabs large and scrollable, you typically need to modify the CSS styles associated with the tabs or use a library or framework that provides such functionality. Here's a general approach:</p>
<ol>
<li>HTML Structure: Set up your HTML structure for the tabs. Use appropriate HTML elements like <code>&lt;ul&gt;</code> for the tab container and <code>&lt;li&gt;</code> for each individual tab.</li>
</ol>
<pre><code class="language-html">&lt;ul class="tab-container"&gt;
  &lt;li class="tab"&gt;Tab 1&lt;/li&gt;
  &lt;li class="tab"&gt;Tab 2&lt;/li&gt;
  &lt;li class="tab"&gt;Tab 3&lt;/li&gt;
  &lt;!-- Add more tabs as needed --&gt;
&lt;/ul&gt;
</code></pre>
<ol start="2">
<li>CSS Styling: Apply CSS styles to make the tabs large and scrollable. You can adjust the size, font, padding, and other properties as needed. Here's an example:</li>
</ol>
<pre><code class="language-css">.tab-container {
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  white-space: nowrap; /* Prevent tabs from wrapping to the next line */
}

.tab {
  display: inline-block;
  padding: 10px 20px; /* Adjust padding to make tabs larger */
  font-size: 16px; /* Adjust font size */
}
</code></pre>
<ol start="3">
<li>
<p dir="auto">Additional Styling: You may need to add more CSS styles to achieve the desired appearance, such as setting the active tab's style or adding a scrollbar. Customize the styles according to your design requirements.</p>
</li>
<li>
<p dir="auto">Apply the CSS: Link the CSS file containing the styles to your HTML document by adding a <code>&lt;link&gt;</code> tag in the <code>&lt;head&gt;</code> section.</p>
</li>
</ol>
<pre><code class="language-html">&lt;head&gt;
  &lt;link rel="stylesheet" href="styles.css"&gt;
&lt;/head&gt;
</code></pre>
<p dir="auto">By following these steps and adjusting the CSS styles to your preference, you should be able to create large and scrollable tabs. Remember to adapt the code to your specific HTML structure and styling preferences.</p>
<p dir="auto">If you're using a specific library or framework for tabs (such as Bootstrap or Material-UI), refer to their documentation for instructions on making tabs large and scrollable, as their implementation may differ from the general approach outlined here.</p>
]]></description><link>https://forums.opera.com/post/323102</link><guid isPermaLink="true">https://forums.opera.com/post/323102</guid><dc:creator><![CDATA[tracyberge]]></dc:creator><pubDate>Thu, 17 Aug 2023 14:02:52 GMT</pubDate></item><item><title><![CDATA[Reply to How do I make the tabs large and scrollable? on Wed, 09 Aug 2023 17:43:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/73">@leocg</a> Hi, I see you are a volunteer, but are you able to bring this case to the developers? Seriously, who wants to have 87 teeny tiny tabs. It doesn't matter that there is a pop out description of the tab. Having them all showing is absurd. It's way too easy to click the wrong one, or close it and loose data. If you are not able to contact the developers, can you tell us how to roll back to the version before this horrid update?</p>
]]></description><link>https://forums.opera.com/post/322137</link><guid isPermaLink="true">https://forums.opera.com/post/322137</guid><dc:creator><![CDATA[spikenard]]></dc:creator><pubDate>Wed, 09 Aug 2023 17:43:01 GMT</pubDate></item><item><title><![CDATA[Reply to How do I make the tabs large and scrollable? on Wed, 09 Aug 2023 12:40:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/73">@leocg</a> I have the same problem. Please, let tabs scrolling like older version. Thanks.</p>
]]></description><link>https://forums.opera.com/post/322108</link><guid isPermaLink="true">https://forums.opera.com/post/322108</guid><dc:creator><![CDATA[ferelias]]></dc:creator><pubDate>Wed, 09 Aug 2023 12:40:17 GMT</pubDate></item><item><title><![CDATA[Reply to How do I make the tabs large and scrollable? on Tue, 01 Aug 2023 18:52:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/572290">@lifeson</a> Tabs scrolling is work in progress.</p>
]]></description><link>https://forums.opera.com/post/320948</link><guid isPermaLink="true">https://forums.opera.com/post/320948</guid><dc:creator><![CDATA[leocg]]></dc:creator><pubDate>Tue, 01 Aug 2023 18:52:13 GMT</pubDate></item></channel></rss>