<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Distorting forum layout, FireFox in Community Site Feedback</title>
    <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19165#M1589</link>
    <description>Well, I've just installed the Web Developer plugin and although the results are quite a bit nicer than the plain screen-shot would suggest. I would still go for the current "broken" implementation.&lt;BR /&gt;Since I appear to be in a minority of one, then a simple ( &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@7617B13E24C0CCAE119AD01B2BB73839/images/emoticons/rolleyes.gif" alt="Roll_eyes" title="Roll_eyes" /&gt; ) change to the css would provide a fix?&lt;BR /&gt;</description>
    <pubDate>Sat, 13 Oct 2007 22:06:07 GMT</pubDate>
    <dc:creator>VileReynard</dc:creator>
    <dc:date>2007-10-13T22:06:07Z</dc:date>
    <item>
      <title>Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19155#M1579</link>
      <description>Large blocks of text without spaces word wrap to fit the screen layout in IE7 but do not in FireFox 2.0, leading to a distorted forum layout.&lt;BR /&gt;For example the code block in this thread;&lt;BR /&gt;&lt;A href="http://community.plus.net/forum/index.php/topic,1816.msg17807.html#msg17807" target="_blank"&gt;http://community.plus.net/forum/index.php/topic,1816.msg17807.html#msg17807&lt;/A&gt;&lt;BR /&gt;Chilly</description>
      <pubDate>Mon, 01 Oct 2007 16:00:42 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19155#M1579</guid>
      <dc:creator>chillypenguin</dc:creator>
      <dc:date>2007-10-01T16:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19156#M1580</link>
      <description>I'm sure I worked out a fix for this when I was messing around with the styles, but it escapes me for now. I'll have a think and see if it pops up to me again.</description>
      <pubDate>Mon, 01 Oct 2007 16:28:34 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19156#M1580</guid>
      <dc:creator>MikeWhitehead</dc:creator>
      <dc:date>2007-10-01T16:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19157#M1581</link>
      <description>EDIT: Deleted the entire previous post because I found a better fix &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@8BBE3DF35B52AAD1B52BEBDC4974E1AD/images/emoticons/tongue.gif" alt="Tongue" title="Tongue" /&gt; (not sure which lines exactly because PlusNet styling may have changed the numbering, but...)&lt;BR /&gt;In Sources/Subs.php, line 1127&lt;BR /&gt;FIND:&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;'content' =&amp;gt; '&amp;lt;div class="codeheader"&amp;gt;' . $txt['smf238'] . ':&amp;lt;/div&amp;gt;&amp;lt;div class="code"&amp;gt;' . ($context['browser']['is_gecko'] ? '&amp;lt;pre style="margin-top: 0; display: inline;"&amp;gt;$1&amp;lt;/pre&amp;gt;' : '$1') . '&amp;lt;/div&amp;gt;',&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;REPLACE WITH:&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;'content' =&amp;gt; '&amp;lt;div class="codeheader"&amp;gt;' . $txt['smf238'] . ':&amp;lt;/div&amp;gt;&amp;lt;div' . ($context['browser']['is_firefox'] ? ' style="overflow: scroll;"' : '') . ' class="code"&amp;gt;' . ($context['browser']['is_gecko'] ? '&amp;lt;pre style="margin-top: 0; display: inline;"&amp;gt;$1&amp;lt;/pre&amp;gt;' : '$1') . '&amp;lt;/div&amp;gt;',&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;In Sources/Subs.php, line 1165&lt;BR /&gt;FIND:&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;'content' =&amp;gt; '&amp;lt;div class="codeheader"&amp;gt;' . $txt['smf238'] . ': ($2)&amp;lt;/div&amp;gt;&amp;lt;div class="code"&amp;gt;' . ($context['browser']['is_gecko'] ? '&amp;lt;pre style="margin-top: 0; display: inline;"&amp;gt;$1&amp;lt;/pre&amp;gt;' : '$1') . '&amp;lt;/div&amp;gt;',&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;REPLACE WITH:&lt;BR /&gt;&lt;PRE&gt;&lt;BR /&gt;'content' =&amp;gt; '&amp;lt;div class="codeheader"&amp;gt;' . $txt['smf238'] . ': ($2)&amp;lt;/div&amp;gt;&amp;lt;div' . ($context['browser']['is_firefox'] ? ' style="overflow: scroll;"' : '') . ' class="code"&amp;gt;' . ($context['browser']['is_gecko'] ? '&amp;lt;pre style="margin-top: 0; display: inline;"&amp;gt;$1&amp;lt;/pre&amp;gt;' : '$1') . '&amp;lt;/div&amp;gt;',&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;This will (100% sure) fix the problem. There IS a neater fix possible, but I can't release it without seeing the contents of PlusNets &lt;B&gt;index.template.php&lt;/B&gt;.&lt;BR /&gt;EDIT: Edit to change my 99.99% to 100% &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@8BBE3DF35B52AAD1B52BEBDC4974E1AD/images/emoticons/tongue.gif" alt="Tongue" title="Tongue" /&gt; Just tested it editing this page at runtime and it works perfectly.</description>
      <pubDate>Mon, 01 Oct 2007 18:31:01 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19157#M1581</guid>
      <dc:creator>MikeWhitehead</dc:creator>
      <dc:date>2007-10-01T18:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19158#M1582</link>
      <description>Giving this a bump to see if anyone picks it up and fixes it. Really starting to bug me now &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@8BBE3DF35B52AAD1B52BEBDC4974E1AD/images/emoticons/tongue.gif" alt="Tongue" title="Tongue" /&gt;</description>
      <pubDate>Sat, 13 Oct 2007 12:28:11 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19158#M1582</guid>
      <dc:creator>MikeWhitehead</dc:creator>
      <dc:date>2007-10-13T12:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19159#M1583</link>
      <description>Is there some reason for not just putting it straight in the stylesheet?</description>
      <pubDate>Sat, 13 Oct 2007 20:56:16 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19159#M1583</guid>
      <dc:creator>Colin</dc:creator>
      <dc:date>2007-10-13T20:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19160#M1584</link>
      <description>Not really. I mean, IE wraps it fine, and the problem only appears in Firefox which is why I suggested that method. Stick it in the stylesheet and see what happens. I don't see why it should break other browsers.</description>
      <pubDate>Sat, 13 Oct 2007 21:13:26 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19160#M1584</guid>
      <dc:creator>MikeWhitehead</dc:creator>
      <dc:date>2007-10-13T21:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19161#M1585</link>
      <description>This is not totally broken.&lt;BR /&gt;On the reply screen large code blocks are shown at the same length as the purple headers (with the remainder readable at the RHS of the screen in normal text).&lt;BR /&gt;&lt;B&gt;I know it's wrong&lt;/B&gt; - but I actually prefer unbroken code blocks.&lt;BR /&gt;Obviously it depends on the aspect ratio of your screen as to the level of irritation (if any) caused.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 13 Oct 2007 21:25:22 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19161#M1585</guid>
      <dc:creator>VileReynard</dc:creator>
      <dc:date>2007-10-13T21:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19162#M1586</link>
      <description>1680 x 1050 resolution on a widescreen monitor, and quite a lot of code blocks throw the layout into chaos. It is broken in the reply screen, because that's not supposed to happen (and thats caused by the code window inheriting the tables specified width, which isn't what should happen (well, it's what should happen as that's what is defined, but it's due to bad coding).&lt;BR /&gt;How do you mean you prefer unbroken code blocks? Adding the overflow keeps the code all correctly tabbed and placed, it just makes sure the display isn't wrecked in Firefox. (IIRC, code gets messed up with the current settings in IE too, because it wraps when it shouldn't really for clarity of code blocks).</description>
      <pubDate>Sat, 13 Oct 2007 21:31:33 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19162#M1586</guid>
      <dc:creator>MikeWhitehead</dc:creator>
      <dc:date>2007-10-13T21:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19163#M1587</link>
      <description>Well, I'm on 1280 x 1024 - but most code blocks (apart from this topic) don't over-extend too much. Because wrapping would often make such a mess of the code block (e.g. a URL) I would prefer to see it unwrapped.&lt;BR /&gt;It's only &lt;B&gt;really&lt;/B&gt; long code blocks that cause problems.&lt;BR /&gt;</description>
      <pubDate>Sat, 13 Oct 2007 21:41:56 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19163#M1587</guid>
      <dc:creator>VileReynard</dc:creator>
      <dc:date>2007-10-13T21:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19164#M1588</link>
      <description>Do you have the web developer add-on for Firefox? If so, choose to edit the CSS and alter the &lt;B&gt;.code&lt;/B&gt; class to contain &lt;B&gt;overflow: scroll;&lt;/B&gt;&lt;BR /&gt;If you do that while you are viewing this thread, you'll see that this solution doesn't cause inproper wrapping, but rather it keeps the width 100% and adds a scrollbar to allow viewing of the extended code which can't be shown in the immediate view.&lt;BR /&gt;EDIT: Added screenshot to show the outcome of the change, in case there is any confusion.</description>
      <pubDate>Sat, 13 Oct 2007 21:44:28 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19164#M1588</guid>
      <dc:creator>MikeWhitehead</dc:creator>
      <dc:date>2007-10-13T21:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19165#M1589</link>
      <description>Well, I've just installed the Web Developer plugin and although the results are quite a bit nicer than the plain screen-shot would suggest. I would still go for the current "broken" implementation.&lt;BR /&gt;Since I appear to be in a minority of one, then a simple ( &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@7617B13E24C0CCAE119AD01B2BB73839/images/emoticons/rolleyes.gif" alt="Roll_eyes" title="Roll_eyes" /&gt; ) change to the css would provide a fix?&lt;BR /&gt;</description>
      <pubDate>Sat, 13 Oct 2007 22:06:07 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19165#M1589</guid>
      <dc:creator>VileReynard</dc:creator>
      <dc:date>2007-10-13T22:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19166#M1590</link>
      <description>Can I link this old thread to it as it may be a similar problem/solution&amp;nbsp; &lt;A href="http://community.plus.net/forum/index.php/topic,308.msg2296.html#msg2296" target="_blank"&gt;http://community.plus.net/forum/index.php/topic,308.msg2296.html#msg2296&lt;/A&gt;</description>
      <pubDate>Sat, 13 Oct 2007 22:14:28 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19166#M1590</guid>
      <dc:creator>Oldjim</dc:creator>
      <dc:date>2007-10-13T22:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19167#M1591</link>
      <description>Yep Oldjim, it's the exact same solution. overflow: scroll will add scrollbars as and when required.&lt;BR /&gt;@axisofevil&lt;BR /&gt;I don't quite understand what you mean you prefer the current broken version? Any reason why?&lt;BR /&gt;&lt;BR /&gt;To expand, basically my previous solution was a change to the SMF code so that the scrollbar would only be applied from within Firefox, as all other browsers display code blocks within a 100% width, not breaking the layout. Thinking about it, making it display scrollbars on every browser is a much nicer solution, as it means code will retain its structure when being viewed.</description>
      <pubDate>Sat, 13 Oct 2007 22:21:29 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19167#M1591</guid>
      <dc:creator>MikeWhitehead</dc:creator>
      <dc:date>2007-10-13T22:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19168#M1592</link>
      <description>My only reason is that I think it looks better in the current form. Purely a personal preference.&lt;BR /&gt;</description>
      <pubDate>Sat, 13 Oct 2007 22:26:18 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19168#M1592</guid>
      <dc:creator>VileReynard</dc:creator>
      <dc:date>2007-10-13T22:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19169#M1593</link>
      <description>Time to move this to Resolved bugs?</description>
      <pubDate>Fri, 15 Feb 2008 16:03:19 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19169#M1593</guid>
      <dc:creator>jelv</dc:creator>
      <dc:date>2008-02-15T16:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Distorting forum layout, FireFox</title>
      <link>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19170#M1594</link>
      <description>Aaaaaiiiii!</description>
      <pubDate>Mon, 18 Feb 2008 08:34:42 GMT</pubDate>
      <guid>https://community.plus.net/t5/Community-Site-Feedback/Distorting-forum-layout-FireFox/m-p/19170#M1594</guid>
      <dc:creator />
      <dc:date>2008-02-18T08:34:42Z</dc:date>
    </item>
  </channel>
</rss>

