<?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[Need Code to Ignore &#x27;FIt to Width&#x27; in Stylish]]></title><description><![CDATA[<p dir="auto">I got Opera 12.16. I have my settings for webpages set to 'Fit to Width'. But there are certain webpages that I need to turn this feature off on. I got Stylish installed. What code can I use in a style for a specific webpage to ignore 'Fit to Width'?</p>
]]></description><link>https://forums.opera.com/topic/4298/need-code-to-ignore-fit-to-width-in-stylish</link><generator>RSS for Node</generator><lastBuildDate>Sat, 06 Jun 2026 02:14:21 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/4298.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 03 Aug 2014 05:10:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Need Code to Ignore &#x27;FIt to Width&#x27; in Stylish on Fri, 15 Aug 2014 00:11:59 GMT]]></title><description><![CDATA[<p dir="auto">Hi burnout.. Thanks for the reply. Unfortunately, I entered those codes in the style I'm using. And they dont work. Btw, if you need to know, the style I'm using is:</p>
<p dir="auto"><a href="http://userstyles.org/styles/101312" target="_blank" rel="noopener noreferrer nofollow ugc">http://userstyles.org/styles/101312</a></p>
<p dir="auto">Let me know if you have any other suggestions. Thank you for all your help so far.</p>
]]></description><link>https://forums.opera.com/post/47880</link><guid isPermaLink="true">https://forums.opera.com/post/47880</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Fri, 15 Aug 2014 00:11:59 GMT</pubDate></item><item><title><![CDATA[Reply to Need Code to Ignore &#x27;FIt to Width&#x27; in Stylish on Thu, 14 Aug 2014 13:45:43 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">Hi burnout.. So, just to make sure, 'fit to width' means word wrap?</p>
</blockquote>
<p dir="auto">Pretty much. But, as far as HTML pages, it'd probably be more accurate to call it "force word wrap" as text still wraps some without out.</p>
<p dir="auto">You can try:</p>
<pre><code>* {
    word-wrap: initial
}
</code></pre>
<p dir="auto">or</p>
<pre><code>* {
    word-wrap: inherit
}
</code></pre>
<p dir="auto">or</p>
<pre><code>* {
    word-wrap: normal
}
</code></pre>
<p dir="auto">to see what that does to counteract fit-to-width.</p>
<p dir="auto">It <em>might</em> also mean to force elements to have a display property of "inline" or "inline-block" (depending on the element)</p>
<p dir="auto">You could try 'initial' or "inherit" for the 'display' property if necessary to see how that helps.</p>
]]></description><link>https://forums.opera.com/post/47830</link><guid isPermaLink="true">https://forums.opera.com/post/47830</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Thu, 14 Aug 2014 13:45:43 GMT</pubDate></item><item><title><![CDATA[Reply to Need Code to Ignore &#x27;FIt to Width&#x27; in Stylish on Thu, 14 Aug 2014 03:31:39 GMT]]></title><description><![CDATA[<p dir="auto">Hi burnout.. So, just to make sure, 'fit to width' means word wrap?</p>
]]></description><link>https://forums.opera.com/post/47795</link><guid isPermaLink="true">https://forums.opera.com/post/47795</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Thu, 14 Aug 2014 03:31:39 GMT</pubDate></item><item><title><![CDATA[Reply to Need Code to Ignore &#x27;FIt to Width&#x27; in Stylish on Tue, 12 Aug 2014 21:28:12 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">is there a CSS code in Opera that governs 'fit to width'?</p>
</blockquote>
<p dir="auto">I assume so. But, I think it's internal. I don't know the CSS that's used.</p>
<p dir="auto">Without knowing the CSS used, I would say you'd need two things</p>
<ul>
<li>
<p dir="auto">A reset stylesheet (you can find them on the net).</p>
</li>
<li>
<p dir="auto">A way to reapply all the pages's CSS. I'd guess you'd have to use scripting for this. But, even then I'm not sure how you'd reapply all the inline styles.</p>
</li>
</ul>
<p dir="auto">Then again, I'm not sure exactly at what point Opera applies the CSS for fit-to-width. Might be after everything else on the page (even user css / extensions). Don't know.</p>
]]></description><link>https://forums.opera.com/post/47662</link><guid isPermaLink="true">https://forums.opera.com/post/47662</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Tue, 12 Aug 2014 21:28:12 GMT</pubDate></item><item><title><![CDATA[Reply to Need Code to Ignore &#x27;FIt to Width&#x27; in Stylish on Tue, 12 Aug 2014 19:03:41 GMT]]></title><description><![CDATA[<p dir="auto">Hi, burnout.. Excuse the long wait in replhying to you. I'm currently on a couple of CSS code forums trying to get help with this issue. I'm having difficulty framing my question in the forum in a way they can understand. Is it best to say that I ned a code to "unwrap the word wrap"? Can you please help me say it in a manner thats understandable?</p>
<p dir="auto">Also, is there a CSS code in Opera that governs 'fit to width'?</p>
<p dir="auto">As always, thank you!!</p>
]]></description><link>https://forums.opera.com/post/47648</link><guid isPermaLink="true">https://forums.opera.com/post/47648</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Tue, 12 Aug 2014 19:03:41 GMT</pubDate></item><item><title><![CDATA[Reply to Need Code to Ignore &#x27;FIt to Width&#x27; in Stylish on Tue, 05 Aug 2014 06:21:30 GMT]]></title><description><![CDATA[<p dir="auto">I don't know if it's revealed anywhere what Opera does exactly for fit-to-width. So, not sure how to counteract it (if that'd be possible).</p>
<p dir="auto">You create site preferences to have domain-specific settings. But, "fit-to-width" isn't in site preferences. Even if you add it to override.ini under the domain in question by adding User Prefs|Rendering mode=-1, it still doesn't work.</p>
<p dir="auto">Finding an extension or user js or user css that does its own fit-to-width, but only for the sites you want (or globally with an option to exclude sites) might be your only option. Don't know of any though.</p>
]]></description><link>https://forums.opera.com/post/47068</link><guid isPermaLink="true">https://forums.opera.com/post/47068</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Tue, 05 Aug 2014 06:21:30 GMT</pubDate></item></channel></rss>