User mercator - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T13:46:19Z http://stackoverflow.com/feeds/user/23263 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1849522/make-a-relative-positioned-block-element-the-same-size-as-its-contained-absolute/1850311#1850311 0 Answer by mercator for Make a relative-positioned block element the same size as its contained absolute-positioned element mercator 2009-12-04T23:18:25Z 2009-12-04T23:26:55Z <p>Do you want the width of the <code>#stack</code> to shrink-wrap its children as well, or are you just concerned about its height? I'm assuming the latter, since you explicitly put <code>display: block</code> on it.</p> <p>Because in that case, it is possible to do it just with CSS:</p> <pre><code>#stack { overflow: hidden; _zoom: 1; } #stack div { float: left; margin-right: -100%; } </code></pre> <p>I added the <code>_zoom: 1</code> to trigger <code>hasLayout</code> in IE6. You can change that to your preferred method (e.g. in a separate IE6 stylesheet), or leave it out altogether if you don't need to support IE6.</p> <p>In Opera, you can make the <code>#stack</code> shrink-wrap its children entirely (i.e. in width as well) when you float the stack (or <code>display: inline-block</code>) and add <code>width: 100%</code> to the child divs. I don't know if that's because of a bug in Opera, a bug in the other browsers, or just a difference due to a vague spec.</p> http://stackoverflow.com/questions/1836319/this-headlink-includes-duplicated-script/1836368#1836368 4 Answer by mercator for $this->headLink() includes duplicated script mercator 2009-12-02T22:38:42Z 2009-12-02T22:38:42Z <p>You shouldn't echo them all individually.</p> <p>There should be once place where the HeadLink helper is printed, and all the other calls only add the stylesheet to that helper to be printed. E.g. the following rules anywhere in your view scripts:</p> <pre><code>&lt;?php $this-&gt;headLink()-&gt;appendStylesheet('/Layouts/admin/css/button.css'); ?&gt; &lt;?php $this-&gt;headLink()-&gt;appendStylesheet('/Layouts/admin/css/inputText.css'); ?&gt; &lt;?php $this-&gt;headLink()-&gt;appendStylesheet('/Layouts/admin/css/fancyTable.class.css'); ?&gt; </code></pre> <p>And then this in your <code>&lt;head&gt;</code>:</p> <pre><code>&lt;?= $this-&gt;headLink() ?&gt; </code></pre> <p>Or, if they all go in the same place anyway, you can chain them together</p> <pre><code>&lt;?= $this-&gt;headLink() -&gt;appendStylesheet('/Layouts/admin/css/button.css') -&gt;appendStylesheet('/Layouts/admin/css/inputText.css') -&gt;appendStylesheet('/Layouts/admin/css/fancyTable.class.css'); ?&gt; </code></pre> <p>which will print the contents of the HeadLink helper with those 3 stylesheets attached.</p> <p>Also see the <a href="http://framework.zend.com/manual/en/zend.view.helpers.html#zend.view.helpers.initial.headlink" rel="nofollow">HeadLink helper Zend documentation</a>; the example in particular.</p> http://stackoverflow.com/questions/1829174/stacking-css3-structural-pseudo-classes/1829281#1829281 1 Answer by mercator for Stacking CSS3 Structural pseudo-classes mercator 2009-12-01T22:07:51Z 2009-12-02T08:53:34Z <p><code>:first-of-type</code> selects the first <code>p</code>, as the name suggests, not the first non-empty <code>p</code> as you might want.</p> <p>They stack just fine, but <code>:first-of-type</code> purely operates on the <em>tag</em> (i.e. type), not on the preceding complex selector. So you just end up looking for the first <code>p</code>, and that first paragraph also shouldn't be empty. And that doesn't exist.</p> <p>Assuming empty paragraphs might appear throughout the text, and you only want the first, non-empty paragraph to be affected, I don't think it's possible to do this with just one selector. This is the best I can come up with:</p> <pre><code>p:first-of-type::first-letter, p:empty + p::first-letter { text-transform: uppercase; /* ... */ } p:not(:empty) ~ p::first-letter { text-transform: inherit; /* reset */ } </code></pre> <p>That will apply the CSS only to the first non-empty paragraph (well, and to a first empty paragraph, but it won't do anything then anyway).</p> http://stackoverflow.com/questions/1828939/zend-framework-getting-a-helper-from-within-a-registered-plugin/1829539#1829539 0 Answer by mercator for Zend Framework - Getting a helper from within a registered plugin mercator 2009-12-01T22:56:45Z 2009-12-01T22:56:45Z <p>You should use the <a href="http://framework.zend.com/manual/en/zend.controller.actionhelpers.html#zend.controller.actionhelper.broker" rel="nofollow">action helper broker</a> to retrieve a helper anywhere outside a controller. See the similar question:</p> <p><a href="http://stackoverflow.com/questions/1116401/zend-framework-call-an-action-helper-from-within-another-action-helper">zend-framework, call an action helper from within another action helper</a></p> http://stackoverflow.com/questions/1813963/lightbox2-doesnt-like-ie8/1814004#1814004 2 Answer by mercator for Lightbox2 doesnt like IE8 mercator 2009-11-28T22:42:17Z 2009-11-30T00:12:13Z <p>Change the <code>position: absolute</code> on your <code>.content</code> div to <code>position: relative</code>.</p> <p>The absolute positioning of it takes it (and thus the entire page's contents) out of the flow, collapsing the <code>body</code> down to a height of 0. You can verify that by checking e.g. <code>document.body.scrollHeight</code>.</p> <p>Since Lightbox then sees the body has no height, it only bothers adding the overlay to one screen-full.</p> <p>Edit: As a work-around for the problem noted in the comments (the overlay still doesn't cover everything when the lightbox extends below the bottom of the original page), you could add some extra padding to the bottom of the page.</p> http://stackoverflow.com/questions/1816123/is-it-possible-to-mimic-css-ridge-border-but-with-custom-colors/1816330#1816330 1 Answer by mercator for Is it possible to mimic CSS ridge border, but with custom colors? mercator 2009-11-29T18:34:06Z 2009-11-29T18:34:06Z <p>Your example seems to suggest you want to create a ridged line as a separator between your header and the rest, rather than a ridged border around an element. Why don't you use a <code>hr</code> for that, since that's pretty much exactly what it's for?</p> <p>You can then give it a border and set your own colors on the different sides.</p> http://stackoverflow.com/questions/1766675/code-golf-running-water/1805943#1805943 2 Answer by mercator for Code Golf: Running Water mercator 2009-11-26T22:28:13Z 2009-11-28T20:57:08Z <h2>Perl, <del>596 594 578 567 569 566 550</del> <em>545</em></h2> <pre><code>sub i{$a=1;for(0..$r-1){$a^=substr(x.$l[$_],$_[0],3)=~/^(.[_y]|.\/[^_]|[^_]\\)/ }$a}sub f{$c=$e-$s;$_=$l[$r];$f=s/(.{$s})(.{0,$c})/$1&lt;$2&gt;/;(/[ _x]&gt;/&amp;i$e-1and $f=/&gt;[ _xy]*[\\\/]/,$e=$+[0]-2)or/[ _]*&gt;/,$e=$-[0]-1;(/&lt;[ _x]/&amp;i$s and$f&amp;= /[\\\/][ _xy]*&lt;/,$s=$-[0])or/&lt;[ _]*/,$s=$+[0]-1;if($f&amp;$s&lt;$e){substr($l[$r],$s, $e-$s)=~s!([\\/][ _xy]*)([\\/][ _]*)!($t=$1)=~y/ _/xy/,$t.$2!eg;$r--&amp;&amp;&amp;f}}$q=@l =&lt;&gt;;while($q--){while($l[$r=$q]=~m~\\/|[\\/]([_y]+)[\\/]~g){if(i$-[0]+1){substr ($l[$r--],$-[1],length$1)=~y/_y/x/;$s=$-[0];$e=$+[0];$q&amp;&amp;f}}}y/y/x/,print for@l </code></pre> <p>This handles all the test cases that I've seen. Newlines are optional and are only there for formatting. </p> <p>Call it as e.g. <code>perl water.pl test.txt</code>.</p> <p>Edit: it still failed on another funny edge case (for my algorithm anyway) not in any of the existing examples:</p> <pre><code>__ _ \__ / /_/ </code></pre> <p>I managed to fix that and still shave off another 5 bytes.</p> <p>The <a href="http://pastie.org/716553" rel="nofollow">verbose version I'd put up earlier</a> still fails on that.</p> http://stackoverflow.com/questions/1757865/find-hover-css-attribute/1759532#1759532 1 Answer by mercator for Find Hover CSS Attribute mercator 2009-11-18T22:15:24Z 2009-11-18T22:15:24Z <p>The <a href="http://james.padolsey.com/demos/animateToSelector/" rel="nofollow">animateToSelector jQuery plug-in</a> seems to do what you want.</p> <p>I found that plug-in through <a href="http://stackoverflow.com/questions/1592990/jquery-plugin-to-animate-colors-form-one-class-to-another/1593025#1593025">another question on StackOverflow</a>. Also have a look at <a href="http://stackoverflow.com/questions/311052/setting-css-pseudo-class-rules-from-javascript">this question</a> to see there isn't really any other way to do it but by going through <code>document.styleSheets</code>.</p> http://stackoverflow.com/questions/1758179/weird-css-li-issue/1758400#1758400 1 Answer by mercator for Weird CSS LI issue mercator 2009-11-18T19:20:44Z 2009-11-18T19:33:13Z <p>Add</p> <pre><code>overflow: hidden; </code></pre> <p>to the <code>#single_content ul</code>. (<code>overflow: auto</code> will also work). If it needs to work in IE6 too, make sure the list <a href="http://www.satzansatz.de/cssd/onhavinglayout.html#nextfloat" rel="nofollow">has layout</a> (e.g. by adding <code>zoom: 1</code>).</p> <p>The lines inside a block box following a float are pushed aside by the floated element. But the block box itself doesn't move, keeping the background images at its left edge, covered by the floating element.</p> <p>You can stop the block box from overlapping a float by having it establish a new block formatting context. One way to do that is to set the <code>overflow</code> property. That forces the entire list next to the float, instead of just pushing its text aside.</p> <p>See the <a href="http://www.w3.org/TR/CSS21/visuren.html#floats" rel="nofollow">CSS2 specification section about floats</a> for more details.</p> http://stackoverflow.com/questions/1741089/wrong-float-warping-in-ie7/1742873#1742873 1 Answer by mercator for Wrong float warping in IE7 mercator 2009-11-16T15:24:44Z 2009-11-16T15:24:44Z <p>Remove the <code>zoom: 1</code> from the <code>#mainContent</code>.</p> <p>I know you added that to work around IE bugs in the first place, but you're going to have to find another way to do that if you also want the main content to wrap around the float. Perhaps you can add it to select elements inside the main content.</p> <p>See the paragraph titled "<a href="http://www.satzansatz.de/cssd/onhavinglayout.html#nextfloat" rel="nofollow">Elements next to floats</a>" in the famous article "<a href="http://www.satzansatz.de/cssd/onhavinglayout.html" rel="nofollow">On having layout</a>".</p> http://stackoverflow.com/questions/1615745/what-css3-features-does-internet-explorer-8-support/1739141#1739141 0 Answer by mercator for What CSS3 features does Internet Explorer 8 support? mercator 2009-11-15T22:46:17Z 2009-11-15T22:46:17Z <p>I mostly rely on <a href="http://en.wikipedia.org/wiki/Comparison%5Fof%5Flayout%5Fengines%5F(Cascading%5FStyle%5FSheets)" rel="nofollow">Wikipedia's article comparing CSS layout engines</a>. It's a lot more comprehensive than any of the other links posted so far.</p> <p>Basically, IE8 doesn't support any CSS3, except for some selectors and some properties that originated at Microsoft to begin with.</p> http://stackoverflow.com/questions/1734889/image-rendered-with-wrong-colors-in-ie8/1734985#1734985 2 Answer by mercator for Image rendered with wrong colors in IE8 mercator 2009-11-14T17:43:26Z 2009-11-14T18:05:45Z <p>It's only slightly different, right? But enough to see the difference?</p> <p>That's because PNG files typically store <a href="http://en.wikipedia.org/wiki/Gamma%5Fcorrection" rel="nofollow">gamma correction</a> information, which was supposed to be a good idea, but actually isn't: <a href="http://hsivonen.iki.fi/png-gamma/" rel="nofollow">The Sad Story of PNG Gamma “Correction”</a>.</p> <p>The best way to fix it is to remove that gamma information from the PNG, and in fact all other color space-related information. That's all stored in the <code>gAMA</code>, <code>sRGB</code>, <code>cHRM</code> and <code>iCCP</code> chunks.</p> <p>There are several utilities that can do that, for example <a href="http://pmt.sourceforge.net/pngcrush/" rel="nofollow">Pngcrush</a> and <a href="http://advsys.net/ken/utils.htm" rel="nofollow">Pngout</a>. There are tons more of these tools around, some with more features than others, and some more user-friendly than others, but you should be able to find those yourself now.</p> <p><a href="http://morris-photographics.com/photoshop/articles/png-gamma.html" rel="nofollow">The PNG Gamma Dilemma</a> kind of summarizes that first article, and gives some usage info for Pngcrush.</p> http://stackoverflow.com/questions/1734721/zendframework-relative-paths-of-images/1734795#1734795 1 Answer by mercator for Zend_framework - relative paths of images mercator 2009-11-14T16:50:41Z 2009-11-14T16:50:41Z <p>You should be using site-root-relative paths instead of relative paths.</p> <p>Simply remove that dot in your image path: <code>./images/logo.jpg</code> should be <code>/images/logo.jpg</code>. The leading dot makes it a path relative to the current URL (so it needs to be changes depending on where you are on the site). Without a dot it's a path relative to the root, so it works everywhere without any need to change it.</p> <p>Also have a look at <a href="http://stackoverflow.com/questions/181805/absolute-path-relative-path">this related question</a> and the links in its answers. </p> http://stackoverflow.com/questions/1732292/svg-text-font-with-fixed-width-height/1732881#1732881 0 Answer by mercator for SVG, text , font with fixed width/height mercator 2009-11-14T01:13:39Z 2009-11-14T01:13:39Z <p>The size of a font determines its <em>height</em>, not its width; and characters are rarely square.</p> <p>So as far as I know, there's no way to determine the width of even monospace text reliably through CSS.</p> <p>Well, CSS3 has the <a href="http://www.w3.org/TR/css3-values/#relative0" rel="nofollow"><code>ch</code> unit</a>, which is the width of the <code>0</code> character. That would work for monospace text. But it's not supported in SVG.</p> <p>You could just set a fixed width in pixels, of course. A width of 300 pixels works for me. But then if someone else uses a different monospaced font that fixed width could be off. If you add the <code>font-family:monospace;font-size:100px;</code> on the <code>&lt;rect&gt;</code> too, you can set the width of the rectangle in <code>em</code>s. But I don't think that's any more reliable.</p> <p>You can, however, use scripting. You can use <a href="http://www.w3.org/TR/SVG11/ecmascript-binding.html" rel="nofollow"><code>getComputedTextLength()</code></a> to get the text length of a <a href="http://www.w3.org/TR/SVG11/text.html#TextElement" rel="nofollow">text element</a>:</p> <pre><code>&lt;script type="text/javascript"&gt; document.getElementById('rect').setAttribute( 'width', document.getElementById('text').getComputedTextLength() ); &lt;/script&gt; </code></pre> <p>Adding that at the end of your SVG (and adding the appropriate element IDs) works in Opera 10, Firefox 3.5 and Safari 4.0, at least.</p> <p>And while you're at it, you could use <code>getBBox()</code> too, to get the text element's bounding box so you can set the height of the rectangle to match the font size too, in case you ever decide to change the font size.</p> http://stackoverflow.com/questions/1710835/strange-ie7-printing-bug/1718731#1718731 1 Answer by mercator for Strange IE7 Printing Bug mercator 2009-11-11T23:08:56Z 2009-11-11T23:08:56Z <p>Not quite an answer, I'm afraid, but it was getting a bit too lengthy for a comment...</p> <p>In what way is the positioning "all wrong" when you change the <code>position</code> attribute? Are you talking about the positioning on the printed page, or in the browser? If it's in the browser, use a separate print stylesheet...</p> <p>Can you only "fix" the page by removing those two paragraphs, or does removing other paragraphs in that same div, and perhaps on the same printed page, that add up to about the same length also fix it?</p> <p>A little Googling around does reveal that IE7 has issues with positioning and print. Have a look at the following links. They might point you in the right direction:</p> <ul> <li><a href="http://www.webmasterworld.com/css/3408611.htm" rel="nofollow">http://www.webmasterworld.com/css/3408611.htm</a></li> <li><a href="http://www.techsupportforum.com/microsoft-support/internet-explorer-forum/162695-cant-print-specific-html-ie7.html" rel="nofollow">http://www.techsupportforum.com/microsoft-support/internet-explorer-forum/162695-cant-print-specific-html-ie7.html</a></li> </ul> <p><a href="http://www.techsupportforum.com/microsoft-support/internet-explorer-forum/162695-cant-print-specific-html-ie7.html#post1821987" rel="nofollow">This post by "ThaSaltyDawg" from the second link</a> looks the most informative, though it addresses a different (?) IE7 print bug:</p> <blockquote> <p>Through trial and error I found a fix for my issue. It was CSS as I had guessed. Using the combinations of float, position, z-index, and a few other elements caused some unexpected results in IE. After going to the Microsoft Support page I found there is a bug with IE concerning this.</p> <p>In my case using a float value with is frowned upon in IE. It displays ok, but not so well for printing. Also make sure your position value is correct. And if you are nesting <code>&lt;table&gt;</code>'s and <code>&lt;div&gt;</code>'s make sure your z-index is correct. </p> <p>There is no real set way to set these things, it depends on there usage because several of my pages had to have different tweaks.</p> </blockquote> <p>Floats and absolutely positioned elements seem to give the most problems. So you're probably just going to have to go with your earlier "solution" of changing the <code>position</code> attribute on a div (in the print stylesheet), and then work your way through the rest to fix the broken layout.</p> http://stackoverflow.com/questions/1704163/string-corruption-and-nonprintable-characters-using-xmltwig-in-win32-perl/1704429#1704429 6 Answer by mercator for String corruption and nonprintable characters using XML::Twig in Win32 Perl mercator 2009-11-09T22:37:53Z 2009-11-09T22:37:53Z <p>It has done an ISO-8859-1 to UTF-8 encoding conversion on the character: <code>\xBF</code> -> <code>\xC2\xBF</code>.</p> <p>XML::Twig converts all its input to UTF-8 (<a href="http://www.perlmonks.org/index.pl?node%5Fid=151612" rel="nofollow">see here</a>).</p> <p>You could tell Twig to keep the input encoding using the <a href="http://search.cpan.org/~mirod/XML-Twig-3.32/Twig.pm#Encoding" rel="nofollow"><code>keep_encoding</code></a> option (also see the XML::Twig FAQ: <a href="http://xmltwig.com/xmltwig/XML-Twig-FAQ.html#Q8" rel="nofollow">My XML documents/data are produced by tools that do not grok Unicode, will XML::Twig help me there?</a>).</p> <p>But perhaps it would be better to keep the UTF-8, or perhaps silently drop the character, depending on what exactly you're going to do with it.</p> http://stackoverflow.com/questions/1703371/float-over-two-elements/1704168#1704168 0 Answer by mercator for Float over two elements mercator 2009-11-09T21:58:41Z 2009-11-09T21:58:41Z <p>You're probably not going to be able to do that, depending on what exactly you mean. </p> <p>The reason it doesn't work is because of IE6's magical <a href="http://www.satzansatz.de/cssd/onhavinglayout.html" rel="nofollow">hasLayout</a> property. Any element that has "layout" in IE6 will contain its floats. Layout is triggered by CSS properties such as width or height. See the linked article for more details.</p> <p>See the "<a href="http://www.satzansatz.de/cssd/acidicfloat.html" rel="nofollow">acidic float tests</a>" for a page discussing this specific issue.</p> <p>If you remove the width and height from the <code>center</code> div, you'll see that it no longer contains the float, because it no longer has layout.</p> <p>Of course, what you end up with then isn't what you want. You could take care of the width by adding a wrapper div around both rows and setting the width on that instead. If you want the fixed height too, you can add an extra div inside each row (as a sibling of the blue box in the first row) and set the height on that instead.</p> <p>If this whole thing becomes part of a more complex design, though, you might inadvertently end up having to add properties to the rows that trigger layout, so this still might not be enough of a solution.</p> <p>In any case, this is what the HTML would end up looking like, with the width and height removed from the <code>center</code> class. I've kept the original structure and added inline CSS to demonstrate the changes:</p> <pre><code>&lt;div style="width: 800px"&gt; &lt;div id="row1"&gt; &lt;div class="center"&gt; &lt;div id="box"&gt; Lorem ipsum ... &lt;/div&gt; &lt;div style="height: 100px"&gt; Duis autem ... &lt;/div&gt; &lt;/div&gt; &lt;div id="row2"&gt; &lt;div class="center" style="height: 100px"&gt; Duis autem ... &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1703411/css-menu-hides-behind-flash-only-in-ie-swfobject/1703845#1703845 1 Answer by mercator for CSS Menu hides behind flash only in IE (SWFObject) mercator 2009-11-09T21:13:08Z 2009-11-09T21:19:49Z <p>Get rid of that <code>position: relative</code> in the universal selector rule (<code>*</code>) starting off your CSS. That's a <em>really</em> bad idea. Removing it fixes the problem.</p> <p>It does break the site a number of ways (presuming that this: <a href="http://www.onlineuticacollege.com/david/" rel="nofollow">http://www.onlineuticacollege.com/david/</a> is in fact the site you're talking about), but you should fix that where those problems occur, not by relatively positioning everything.</p> http://stackoverflow.com/questions/1694180/extension-like-firebug-to-actually-write-on-the-file-system/1698503#1698503 1 Answer by mercator for extension like firebug to actually write on the file system mercator 2009-11-09T00:36:52Z 2009-11-09T00:36:52Z <p>You can could use the <a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">Web Developer Toolbar</a> for this.</p> <p>The changes you make in its CSS editor (<code>CSS &gt; Edit CSS</code>) are applied to the page immediately (without saving to file), but it also has a <code>Save...</code> option, so you can overwrite the existing CSS file with it.</p> <p>It's a pretty basic text field, though, that just displays the plain CSS file. It doesn't have any syntax highlighting nor organize the CSS rules according to the cascade etc. like Firebug does.</p> <p>Also see this related question:</p> <ul> <li><a href="http://stackoverflow.com/questions/162644/why-cant-i-save-css-changes-in-firebug">Why can’t I save CSS changes in FireBug?</a></li> </ul> http://stackoverflow.com/questions/1697975/change-the-absolute-position-from-left-to-right-on-a-span-tag-depending-on-class/1698135#1698135 4 Answer by mercator for change the absolute position from left to right on a span tag depending on class. mercator 2009-11-08T22:27:28Z 2009-11-08T22:27:28Z <p>Judging from that CSS, you don't seem to understand CSS correctly, or you aren't using it correctly at least. You might want to read the SitePoint article about <a href="http://reference.sitepoint.com/css/inheritancecascade" rel="nofollow">the cascade, specificity and inheritance</a> for a good introduction.</p> <p>The reason that doesn't work is because the last <em>two</em> lines of that CSS apply to the list items with the <code>support</code> class. The second-to-last line applies to <em>all</em> list items, and the last line then adds to that for the <code>support</code> list items. So, since there's no <code>left</code> property in that last line, the <code>left</code> property cascades down from the previous line, making it <code>left: 0</code> <em>too</em>.</p> <p>When you're using a class to mark a special case, you shouldn't be repeating all the CSS of the general case, but only provide the CSS necessary to change it:</p> <pre><code>#menu ul li:hover span {display:block; position:absolute; top:30px; left:0;} #menu ul li.support:hover span {left:auto; right:0;} </code></pre> <p>That CSS will mean the <code>support</code>-class list items get all the CSS the other list items get, but with the <code>left</code> property reset to default, and the <code>right</code> property set instead.</p> http://stackoverflow.com/questions/1684134/unable-to-resize-table-beyond-certain-minimum-width/1684322#1684322 0 Answer by mercator for unable to resize table beyond certain minimum width mercator 2009-11-05T23:11:33Z 2009-11-05T23:11:33Z <p>What those lines of jQuery do is add <code>style="width: 400px"</code> to those table elements. And if you check the DOM, you'll see that they both succeed at doing that.</p> <p>However, you've also set explicit widths on some of the tables' cells. For the detail table those widths add up to ~900 pixels. For the header table they add up to ~500 pixels. And on tables, those widths specify the <em>minimum width</em> of the column.</p> <p>So the reason your resize is failing is because the table's columns force a minimum width on the tables larger than the 400 pixels you want it to be.</p> <p>Also note that the second resize fails too. The table doesn't end up being 400 pixels wide, but closer to 500 for the same reason.</p> http://stackoverflow.com/questions/1621132/css-text-select-cursor-ie7-strange-behavior/1670836#1670836 1 Answer by mercator for CSS text-select cursor ie7, strange behavior mercator 2009-11-03T23:29:59Z 2009-11-03T23:29:59Z <p>I'm pretty sure I have encountered it before, but it's probably a bit too subtle to really notice during some superficial browser testing. But I've certainly also had issues fixed by setting a background color.</p> <p>As far as I can tell, the best way to fix it is to position the element causing the problems, or add a positioned wrapper div around it. You would most likely use <code>position: relative</code>, though <code>absolute</code> and <code>fixed</code> should work too.</p> <p>Positioning the element itself usually works, but adding a wrapper div might work more consistently.</p> <p>E.g. adding <code>position: relative</code> to the <code>.post-text</code> class fixes the cursor on the questions and answers on this page.</p> http://stackoverflow.com/questions/1577366/can-important-rules-be-used-in-ies-css-expressions/1655659#1655659 2 Answer by mercator for Can !important rules be used in IE's CSS expressions? mercator 2009-10-31T21:18:49Z 2009-11-01T01:07:26Z <p>The reason those CSS expressions don't work is because IE only evaluates the expression for the last property in the cascade.</p> <p>E.g. if you have an HTML document with a link inside it and the following "CSS",</p> <pre><code>a { color: expression(function(e){ alert('success'); e.runtimeStyle.color = 'blue'; }(this)); } a { color: red; } </code></pre> <p>you will never see that alert (nevermind the style change), because the CSS expression is never evaluated. So no, you can't use an expression to set the <code>!important</code> flag.</p> <p>That is to say, not when you try to set it on the same property. You can cheat. But that does make the expression a bit more complicated:</p> <pre><code>a { filter: expression(function(e){ e.runtimeStyle.color = 'blue'; alert('success'); e.style.filter = ''; }(this)); } a { color: red; } </code></pre> <p>There are a few things to note here.</p> <p>If you simply use another CSS property, you can be sure that the expression <em>will</em> be evaluated. Or at least, a little more sure, because if there's another rule further down the cascade that uses the same property already, you're still out of luck.</p> <p>Secondly, you have to use <a href="http://msdn.microsoft.com/en-us/library/ms535889(VS.85,loband).aspx" rel="nofollow"><code>runtimeStyle</code></a> instead of <a href="http://msdn.microsoft.com/en-us/library/ms528441(VS.85,loband).aspx" rel="nofollow"><code>currentStyle</code></a>. If you used <code>currentStyle</code> here, the second rule would still end up overwriting it. <code>runtimeStyle</code> overrides all other CSS (<em>except <code>!important</code> declarations</em>). So it's the JScript equivalent of <code>!important</code>.</p> <p>Also note that I'm resetting the <code>filter</code> property itself as well. That prevents the expression from being continuously re-evaluated. But as much as that may reduce performance, I don't think it's super critical. The main reason I put it in here is because I added <code>alert()</code>s in those expressions, and you <em>definitely</em> don't want to have those pop up forever.</p> <p>It is in fact also possible to use any other property you make up. This works too:</p> <pre><code>a { bogus: expression(function(e){ e.runtimeStyle.color = 'blue'; }(this)); } </code></pre> <p>However, since the <code>bogus</code> property doesn't actually exist, you can't reset it using Javascript, so this <em>will</em> be re-evaluated continuously.</p> http://stackoverflow.com/questions/1580456/how-to-point-to-css-default-class-using-the-class-attribute/1583416#1583416 0 Answer by mercator for How to point to CSS default class using the class attribute mercator 2009-10-17T22:47:45Z 2009-10-17T22:47:45Z <p>If you're going to have a conditional like in <a href="http://stackoverflow.com/questions/1580456/how-to-point-to-css-default-class-using-the-class-attribute/1580494#1580494">Matt Huggins' answer</a> anyway, and considering your comment on <a href="http://stackoverflow.com/questions/1580456/how-to-point-to-css-default-class-using-the-class-attribute/1580493#1580493">Guffa's answer</a>, why don't you move the conditional into the echo? That'll give you the cleanest HTML output. For example:</p> <pre><code>$css_class = array(); if($logged_in) { $css_class[] = "success"; } if($something_else) { $css_class[] = "some-class"; } echo '&lt;h1' . empty($css_class) ? '' : ' class="' . implode(' ', $css_class) . '"' . '&gt; My Title &lt;/h1&gt;'; </code></pre> http://stackoverflow.com/questions/1384718/mysql-utf-text-capacity/1384759#1384759 3 Answer by mercator for MySQL UTF Text Capacity mercator 2009-09-06T02:53:13Z 2009-09-06T02:53:13Z <p>You could turn it into a <code>varchar</code> instead. The length of a <code>varchar</code> is limited to the number of <em>characters</em> you specify. The length of a <code>tinytext</code> field is limited to 255 <em>bytes</em>.</p> http://stackoverflow.com/questions/1384604/css-positionfixed-inside-of-position-fixed/1384650#1384650 0 Answer by mercator for CSS: position:fixed inside of position: fixed mercator 2009-09-06T01:20:36Z 2009-09-06T01:48:11Z <p>The fixing and the positioning are two separate things. They're positioned the same as absolutely positioned elements: relative to their <a href="http://www.w3.org/TR/CSS2/visudet.html#containing-block-details" rel="nofollow">containing block</a>. But in contrast with absolutely positioned elements, they remain fixed to that position with respect to the viewport (i.e. they don't move when scrolling):</p> <p><a href="http://www.w3.org/TR/CSS2/visuren.html#propdef-position" rel="nofollow">http://www.w3.org/TR/CSS2/visuren.html#propdef-position</a></p> <blockquote> <p>The box's position is calculated according to the 'absolute' model, but in addition, the box is fixed with respect to some reference.</p> </blockquote> <h3>Positioning</h3> <p>The <a href="http://www.w3.org/TR/CSS2/visudet.html#containing-block-details" rel="nofollow">definition of containing block</a> says:</p> <blockquote> <p>If the element has 'position: fixed', the containing block is established by the viewport in the case of continuous media (...)</p> </blockquote> <p>and</p> <blockquote> <p>If the element has 'position: absolute', the containing block is established by the nearest ancestor with a 'position' of 'absolute', 'relative' or 'fixed' (...)</p> </blockquote> <p>which seems to suggest that while their positioning algorithm is the same (they're both positioned relative to their containg block), the containing block for fixed elements is always the viewport, in contrast with absolutely positioned elements, so they should be positioned relative to <em>that</em> and not to any absolutely or fixed-positioned elements.</p> <p>And as a matter of fact, that is indeed the case. For example, if you add <code>top: 20px</code> to <code>.fixed</code>, both divs will be positioned 20 pixels from the top of the viewport. The nested fixed div does not get positioned 20 pixels down from the top of its parent.</p> <p>The reason you're not seeing that in this case is because you're not actually setting any of the left/top/right/bottom properties, so their positions are determined by the position they would have in the flow (their "<a href="http://www.w3.org/TR/CSS21/visudet.html#static-position" rel="nofollow">static position</a>"), which as my first quote said, is done according to the absolute model.</p> http://stackoverflow.com/questions/1384480/how-firefox-renders-links/1384497#1384497 0 Answer by mercator for How Firefox renders links mercator 2009-09-05T23:22:42Z 2009-09-05T23:22:42Z <p>That's because <a href="http://docs.jquery.com/Show" rel="nofollow"><code>.show()</code></a> turns them into blocks:</p> <blockquote> <p>This function shows the matching elements on the page when they are hidden. It actually changes the display style to 'block'. This can cause some problems in your page's layout because it inserts a line break before and after the element, but for general use it is perfect. For a more flexible use please take a look and the <a href="http://docs.jquery.com/Addclass" rel="nofollow">.addClass()</a> and <a href="http://docs.jquery.com/Removeclass" rel="nofollow">.removeClass()</a> function.</p> </blockquote> <p>I would suggest replacing <code>.show()</code> by <code>.removeClass('hiddenLink')</code>.</p> <p>Or does that "hiddenLink" do more than just hide the links, and do you want them to look different from your other links when they become visible?</p> http://stackoverflow.com/questions/1329613/issue-with-passing-querystring-parameters-via-http-get-to-an-iframe-in-ie/1375830#1375830 7 Answer by mercator for Issue with passing querystring parameters via Http Get to an iframe in IE mercator 2009-09-03T20:41:53Z 2009-09-03T21:00:37Z <p>After working my way through the HTTP requests with <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler2</a>, comparing different browsers, I found that IE makes the request just fine, but fails to set any cookies in the <code>iframe</code>.</p> <p>I also noticed that if I open that framed page by itself it does work. Even more so, after logging out again there, the iframed version works too. That's because it then already has a session cookie and the <code>iframe</code> no longer needs to set it.</p> <p>It turns out that this is a known security restriction: IE blocks cookies in iframes. But this can be overcome with the use of the <a href="http://en.wikipedia.org/wiki/P3P" rel="nofollow">Platform for Privacy Preferences (P3P)</a>.</p> <p>Here are a few links that should help you fix the problem. Starting off with another (answered) question on StackOverflow:</p> <ul> <li><a href="http://stackoverflow.com/questions/389456/cookie-blocked-not-saved-in-iframe-in-internet-explorer">Cookie blocked/not saved in IFRAME in Internet Explorer</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/ms537343(VS.85).aspx" rel="nofollow">Privacy in Internet Explorer 6</a></li> <li><a href="http://adamyoung.net/IE-Blocking-iFrame-Cookies" rel="nofollow">IE Blocking iFrame Cookies</a></li> </ul> http://stackoverflow.com/questions/1370308/how-to-pass-by-reference-a-class-var-to-a-global-var-in-php/1370430#1370430 0 Answer by mercator for how to pass by reference a class var to a global var in PHP? mercator 2009-09-02T22:13:17Z 2009-09-02T22:48:45Z <p><code>$my_internal_var</code> is a global and not a class variable, so this line can't possibly work:</p> <pre><code>$this-&gt;my_var = &amp;$this-&gt;my_internal_var; </code></pre> <p><code>$this-&gt;my_internal_var</code> doesn't exist.</p> <p>Why aren't you using the same logic you're already using in some of your other functions/methods? For setting one global variable to a reference of another, though, you need to use the <code>$GLOBALS</code> array:</p> <pre><code>function set_my_var_to_internal_reference(){ global $my_internal_var; $this-&gt;my_var = &amp;$my_internal_var; $GLOBALS['my_var'] = &amp;$my_internal_var; } </code></pre> <p>Have a look at the <a href="http://www.php.net/manual/en/language.variables.scope.php" rel="nofollow">PHP manual page about variable scope</a>.</p> <p>Oh, and as much as this may make it work for you now, I'm with <a href="http://stackoverflow.com/questions/1370308/how-to-pass-by-reference-a-class-var-to-a-global-var-in-php/1370342#1370342">erenon</a> in that you should avoid using globals...</p> <ul> <li><a href="http://stackoverflow.com/questions/357187/global-variables-when-are-they-acceptable">Global variables: When ARE they acceptable?</a></li> <li><a href="http://c2.com/cgi/wiki?GlobalVariablesAreBad" rel="nofollow">Global Variables Are Bad</a></li> <li>Wikipedia: <a href="http://en.wikipedia.org/wiki/Global%5Fvariable" rel="nofollow">Global variable</a></li> </ul> http://stackoverflow.com/questions/1369556/why-cant-i-clearleft-these-labels-in-ie7/1369722#1369722 -2 Answer by mercator for Why can't I clear:left these labels in IE7? mercator 2009-09-02T19:45:14Z 2009-09-02T21:48:45Z <p>As <a href="http://stackoverflow.com/questions/1369556/why-cant-i-clearleft-these-labels-in-ie7/1369642#1369642">Emily said</a>, it's not going to work with floats... But then of course, you can just <em>not</em> use floats where appropriate.</p> <p>Change the following statements from your original CSS, turning them from floats into (inline) blocks:</p> <pre><code>form label.field-title { width: 50px; float: none; display: block; } form label.field-last { width: 150px; float: none; display: inline-block; } form label.field-street { width: 310px; float: none; display: block; } form label.field-zip { width: 70px; float: none; display: inline-block; } </code></pre> <p>This will continue to work in other (recent) browsers too.</p> <h3>How does it work?</h3> <p>The problem with IE7's floats is that they can "bubble up" through other floats. E.g. the reason <code>field-last</code> ends up next to <code>field-title</code> is because it doesn't clear its left unlike <code>field-first</code>. But instead of staying next to the <code>field-first</code> it just moves up through it next to <code>field-title</code>.</p> <p>The easiest way to fix that is simply to make <code>field-title</code> a block. That prevents it from any following floats appearing next to it. The same goes for <code>field-street</code>. You don't want anything to appear next to it, so you can just turn it into a block.</p> <p>That doesn't work with <code>field-last</code>, however, because in standards-compliant browsers, the block essentially contains the preceding float. But since that already takes up its full width, there's no room left next to it. Making it an inline-block instead does let it keep its block properties while putting it next to the float, instead of encompassing it.</p> <p>The same thing goes for the <code>field-zip</code>, with only one difference. <code>field-last</code> is already followed by a block, so it doesn't have to worry about anything floating to its right. <code>field-zip</code>, though, is followed by a float, so that needs to clear its left to prevent it from coming up next to the Zip code.</p> http://stackoverflow.com/questions/1850439/double-hyphen-in-script-makes-firefox-render-strangely/1850510#1850510 Comment by mercator on double hyphen in script makes firefox render strangely mercator 2009-12-05T00:20:02Z 2009-12-05T00:20:02Z It's probably not quite strictly SGML as it is implemented in Firefox, but even HTML5 disallows two consective hyphens in a comment: <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#comments" rel="nofollow">whatwg.org/specs/web-apps/&hellip;</a> http://stackoverflow.com/questions/1849522/make-a-relative-positioned-block-element-the-same-size-as-its-contained-absolute/1849565#1849565 Comment by mercator on Make a relative-positioned block element the same size as its contained absolute-positioned element mercator 2009-12-04T23:29:27Z 2009-12-04T23:29:27Z Depending on the exact requirements, Javascript isn't necessary. Floats are also taken out of the flow, but can be contained. http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-code Comment by mercator on Strategy for developing namespaced and non-namespaced versions of same PHP code mercator 2009-12-02T23:45:55Z 2009-12-02T23:45:55Z @Byron Whitlock: But how will you use your code library you wrote for PHP 5.2 in that 5.3 project then? Rewrite it, refactor it or leave it as is? If your answer is one of the first two, see the original question. http://stackoverflow.com/questions/1833330/how-to-get-php-get-array/1833404#1833404 Comment by mercator on How to get PHP $_GET array ? mercator 2009-12-02T15:06:45Z 2009-12-02T15:06:45Z +1, This definitely is in need of more error checking etc. You should be using <code>$&#95;SERVER['QUERY&#95;STRING']</code> there, and <code>urldecode()</code> the parameter in case there are funny characters in it... But I hate PHP's <code>[]</code> with a passion, so I have in fact written a function like this once. http://stackoverflow.com/questions/1829174/stacking-css3-structural-pseudo-classes/1829281#1829281 Comment by mercator on Stacking CSS3 Structural pseudo-classes mercator 2009-12-01T23:04:49Z 2009-12-01T23:04:49Z I updated my answer. http://stackoverflow.com/questions/1829174/stacking-css3-structural-pseudo-classes/1829281#1829281 Comment by mercator on Stacking CSS3 Structural pseudo-classes mercator 2009-12-01T22:32:33Z 2009-12-01T22:32:33Z Hmmm, and I take it you might have any number of empty paragraphs anywhere in the text? Or is it just the one empty starting paragraph that might or might not be there? http://stackoverflow.com/questions/1828939/zend-framework-getting-a-helper-from-within-a-registered-plugin Comment by mercator on Zend Framework - Getting a helper from within a registered plugin mercator 2009-12-01T21:21:17Z 2009-12-01T21:21:17Z Do you mean this? <a href="http://stackoverflow.com/questions/1116401/zend-framework-call-an-action-helper-from-within-another-action-helper" rel="nofollow" title="zend framework call an action helper from within another action helper">stackoverflow.com/questions/1116401/&hellip;</a> http://stackoverflow.com/questions/1813963/lightbox2-doesnt-like-ie8/1814004#1814004 Comment by mercator on Lightbox2 doesnt like IE8 mercator 2009-11-29T23:48:27Z 2009-11-29T23:48:27Z I see what you mean. I think that's a bug in Lightbox. The overlay still only covers the height of the original page. When the lightbox/image being opened extends below the original bottom of the page, the overlay doesn't extend to cover that part too (well, it does in Firefox and Safari)... Its <code>getPageSize()</code> function isn't quite cross-browser enough. The most reliable way I could find to get the proper height is by using <code>document.documentElement.scrollHeight</code>, but Lightbox doesn't use that. http://stackoverflow.com/questions/1813908/problem-with-transparent-margin Comment by mercator on Problem with transparent margin mercator 2009-11-28T22:21:01Z 2009-11-28T22:21:01Z see here: <a href="http://stackoverflow.com/questions/315738/unexpected-margin-with-very-simple-html" rel="nofollow" title="unexpected margin with very simple html">stackoverflow.com/questions/315738/&hellip;</a> http://stackoverflow.com/questions/1813822/is-this-snippet-creating-an-anonymous-perl-hash/1813833#1813833 Comment by mercator on Is this snippet creating an anonymous Perl hash? mercator 2009-11-28T22:13:28Z 2009-11-28T22:13:28Z You should probably remove everything after that first code block in your answer, because it's only confusing the issue. The <code>add&#95;filler</code> function <i>doesn't</i> do any hash magic. More specifically, it does this: <code>my ($self,$name,$class,@args) = @&#95;;</code> (see here: <a href="http://cpansearch.perl.org/src/CORION/WWW-Mechanize-FormFiller-0.10/lib/WWW/Mechanize/FormFiller.pm" rel="nofollow">cpansearch.perl.org/src/CORION/&hellip;</a>). So it only uses the <code>=&gt;</code> operator for its automatic string-interpreting properties. http://stackoverflow.com/questions/1813822/is-this-snippet-creating-an-anonymous-perl-hash/1813850#1813850 Comment by mercator on Is this snippet creating an anonymous Perl hash? mercator 2009-11-28T21:54:26Z 2009-11-28T21:54:26Z It does not in fact have that <code>%params</code> line, and even if it did, it would not turn it into a nested hash structure. You would get a hash with keys <code>password</code> and an array reference. http://stackoverflow.com/questions/1808832/inline-css-javascript-into-a-html-file/1808880#1808880 Comment by mercator on Inline CSS/Javascript into a HTML file mercator 2009-11-27T19:00:46Z 2009-11-27T19:00:46Z Opera supports it too, and it's a MIME multipart format so e-mail clients should support it: <a href="http://stackoverflow.com/questions/793404/do-most-email-clients-support-mhtml" rel="nofollow" title="do most email clients support mhtml">stackoverflow.com/questions/793404/&hellip;</a> http://stackoverflow.com/questions/1766485/are-the-php-pregfunctions-multibyte-safe/1766518#1766518 Comment by mercator on Are the PHP preg_functions multibyte safe? mercator 2009-11-19T21:28:15Z 2009-11-19T21:28:15Z They're the multi-byte version of the POSIX <code>ereg</code> functions, though, which aren't exactly the same as the PCRE <code>preg</code> functions. http://stackoverflow.com/questions/1755656/displaynone-vs-visibilityhidden-vs-text-indent9999-how-screen-reader-behave-wi Comment by mercator on display:none vs visibility:hidden vs text-indent:9999 How screen reader behave with each one ? mercator 2009-11-18T22:51:20Z 2009-11-18T22:51:20Z JAWS (<a href="http://www.freedomscientific.com/products/fs/jaws-product-page.asp" rel="nofollow">freedomscientific.com/products/fs/&hellip;</a>), the most popular screen reader (<a href="http://www.webaim.org/projects/screenreadersurvey2/" rel="nofollow">webaim.org/projects/screenreadersurvey2/&hellip;</a>) isn't a dedicated browser, but an application that makes other programs, such as browsers, accessible. I don't know exactly how it works, but I presume it just piggy-backs on the browser's rendering engine to decide what to say. http://stackoverflow.com/questions/1758167/odd-issue-with-outline-on-form-buttons-input-tag-in-safari-only Comment by mercator on Odd issue with outline on form button's input tag in Safari only mercator 2009-11-18T21:45:25Z 2009-11-18T21:45:25Z What's the CSS that's being applied to it?