User David Kolar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:44:40Zhttp://stackoverflow.com/feeds/user/3283http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1682741/my-website-becomes-distorted-on-large-monitors/1682861#16828613Answer by David Kolar for My website becomes distorted on large monitorsDavid Kolar2009-11-05T19:08:50Z2009-11-05T19:08:50Z<p>The first thing I would check is whether other sites also look distorted on the large monitor, and not just yours. Just like wide-screen TVs in sports bars, there are many mis-configured wide-screen monitors that are stretching 4x3-ratio display resolutions over 16x9-ratio screen sizes. I see it all the time.</p>
http://stackoverflow.com/questions/1543937/have-you-used-any-databases-only-hosting-service/1634495#16344951Answer by David Kolar for Have you used any databases only hosting service?David Kolar2009-10-28T00:23:45Z2009-10-28T00:23:45Z<p>A few weeks after the question was posted, Amazon announced a beta of "Amazon Relational Database Service (Amazon RDS)." It acts like MySQL 5.1. </p>
<p><a href="http://aws.amazon.com/rds/" rel="nofollow">http://aws.amazon.com/rds/</a></p>
<p>Seems pricey for what you want, but you never said <em>you</em> were the one who would be paying the bill.</p>
http://stackoverflow.com/questions/713232/problem-with-png-image-on-top-of-an-image-in-css/714110#7141100Answer by David Kolar for Problem with PNG image on top of an image in CSS?David Kolar2009-04-03T14:18:00Z2009-09-25T01:16:24Z<p>Make sure that you have the right path to the background image. If the style is in the <code><head></code> of the HTML page, then the path will be relative to the HTML page. If the style is within an external stylesheet, then the path will be relative to the file location of the stylesheet.</p>
<p>You also might want to get it working without the Internet Explorer 6 PNG fixes first, and then add the fixes back in after you know the rest of the code is correct.</p>
http://stackoverflow.com/questions/1452404/any-time-you-should-use-relative-links-for-internal-pages/1452490#14524900Answer by David Kolar for Any time you should use relative links for internal pages?David Kolar2009-09-21T01:15:49Z2009-09-21T01:15:49Z<p>If you work in something like a Development-Preview-Production environment, you will find testing much easier if you use relative links. Otherwise, clicking on a link on the development server will take you to the production server.</p>
http://stackoverflow.com/questions/1294267/how-to-position-the-split-line-caused-by-background-repeat/1294508#12945082Answer by David Kolar for How to position the split line caused by background repeat.David Kolar2009-08-18T15:11:01Z2009-08-18T15:11:01Z<p>A straightforward way to do this without any CSS trickery or extra markup is to modify the image. Center the background image with:</p>
<pre><code>background-position: top center;
</code></pre>
<p>...and then offset the actual image file in an editor. In Photoshop use Filter >> Other >> Offset and use a horizontal value that is half of the image's width. Likewise, in the Gimp use <a href="http://docs.gimp.org/en/gimp-layer-offset.html" rel="nofollow">Layer >> Transform >> Offset</a>.</p>
<p>That's not the clean CSS solution you were looking for, but it's a nice pragmatic fix.</p>
http://stackoverflow.com/questions/1278602/relative-positioned-divs-height-added-up-in-ie6-before-the-negative-top/1278656#12786561Answer by David Kolar for Relative positioned divs height added up in IE6 before the negative topDavid Kolar2009-08-14T15:51:16Z2009-08-14T16:05:25Z<p>It's not the fact that the heights are added up beforehand that's messing you up---all browsers do this. It's the fact that IE 6 has a different idea of what to do when the <code>height</code> of <code>#B</code>'s content exceeds <code>100px</code>. Since you know the height you want for <code>#B</code>, you can add <code>overflow: hidden</code> to the existing style.</p>
<pre><code><div id="B" style="height: 100px; overflow: hidden;">
</code></pre>
http://stackoverflow.com/questions/392594/concurrent-user-sessions-why-dont-we-see-more-of-it/988540#9885400Answer by David Kolar for Concurrent User Sessions - Why Don't We See More Of It?David Kolar2009-06-12T19:20:16Z2009-06-12T19:20:16Z<p>Since you first wrote the question, IE 8 has been officially released and it has a built-in feature that does what you want. From the "File" menu, click on "New Session." This will open a new window that will not share session cookies with the original window, allowing you to be logged into the same site under different logins simultaneously.</p>
<p><a href="http://blogs.msdn.com/ie/archive/2009/05/06/session-cookies-sessionstorage-and-ie8.aspx" rel="nofollow">http://blogs.msdn.com/ie/archive/2009/05/06/session-cookies-sessionstorage-and-ie8.aspx</a></p>
http://stackoverflow.com/questions/755795/are-iframes-html-obsolete/756606#7566067Answer by David Kolar for Are IFrames (HTML) obsolete?David Kolar2009-04-16T15:11:24Z2009-04-16T15:11:24Z<p>In my <strong>opinion</strong> the W3C jumped the gun in dumping iframes from the Strict HTML and XHTML doctypes. In theory you would use the <code><object></code> element to add foreign objects to your document, but browser differences and limitations have made this a nonstarter for many developers. With the much-more-pragmatic HTML 5 (which is still a draft), iframes are back and even have two new attributes: <code>seamless</code>, and the intriguing <code>sandbox</code>.</p>
http://stackoverflow.com/questions/755944/possible-to-add-line-breaks-in-a-textarea-field-while-keeping-it-xhtml-1-0-valid/756239#7562391Answer by David Kolar for Possible to add line breaks in a textarea field while keeping it XHTML 1.0 valid?David Kolar2009-04-16T13:59:19Z2009-04-16T13:59:19Z<p>From the <a href="http://www.w3.org/TR/xhtml1/dtds.html#dtdentry%5Fxhtml1-strict.dtd%5Ftextarea" rel="nofollow">DTD</a>:</p>
<blockquote>
<p><code><!ELEMENT TEXTAREA - - (#PCDATA) -- multi-line text field --></code></p>
</blockquote>
<p>In the XHTML code of your page, a <code><textarea></code> can only contain text (<code>#PCDATA</code>), and you cannot nest any XHTML elements within the <code><textarea></code>.</p>
<p>Your questions seems to show two different things. The image shows "<code><br /></code>" written into a <code><textarea></code>, while the message from the W3C Validator is referring to a <code><br /></code> element written into the XHTML of your page within the <code><textarea></code> element. </p>
<p>In the first case, having "<code>Test<br />line break</code>" appear to the user in the text area is done by using the appropriate entities, just as <a href="http://stackoverflow.com/questions/755944/possible-to-add-line-breaks-in-a-textarea-field-while-keeping-it-xhtml-1-0-valid/755996#755996">altCognito</a> wrote:</p>
<pre><code><textarea>Test&lt;br /&gt;line break</textarea>
</code></pre>
<p>Anything that's being entered by the user that is then redisplayed within a <code><textarea></code> on a new page should be encoded (i.e., use entities for <code>&</code>, <code>"</code>, <code>'</code>, <code><</code>, and <code>></code>).</p>
<p>If want to display a user's entry:</p>
<blockquote>
<p>Test<code><br /></code>line break</p>
</blockquote>
<p>...as...</p>
<blockquote>
<p>Test<br />
line break</p>
</blockquote>
<p>...within another text area, then you will need to parse what has been entered into the original <code><textarea></code> and replace the user-entered <code><br /></code>s with normal line breaks. <a href="http://stackoverflow.com/questions/755944/possible-to-add-line-breaks-in-a-textarea-field-while-keeping-it-xhtml-1-0-valid/755992#755992">See Lucero's answer</a>.</p>
http://stackoverflow.com/questions/751360/how-can-i-get-list-items-to-stay-together-using-css/751628#7516282Answer by David Kolar for How can i get List items to stay together using CSS?David Kolar2009-04-15T13:11:40Z2009-04-15T13:11:40Z<p>You could set the <code><ul></code> to </p>
<pre><code>display: inline-block;
</code></pre>
<p>You might also want to <code>clear: left;</code> your images, since it's possible that they could start stacking up next to each other depending on the other content.</p>
http://stackoverflow.com/questions/738831/how-to-display-browser-specific-html/738845#7388452Answer by David Kolar for How to display browser specific HTML?David Kolar2009-04-10T20:58:39Z2009-04-13T14:59:02Z<p>This is the Microsoft-approved way:</p>
<pre><code><!--[if IE]>
<a href="ie-only.html">click here!</a>
<![endif]-->
<![if !IE]>
<a href="all-other-browsers.html">click here!</a>
<![endif]>
</code></pre>
<p>More information available at <a href="http://msdn.microsoft.com/en-us/library/ms537512%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx</a>.</p>
<h2>Edit</h2>
<p>This code is implicitly guaranteed to work in all current and future versions of IE starting with IE 5. For non-IE browsers, the code works by relying on those browsers ignoring the "nonsensical" <code><![if !IE]></code> tag, which they all do, and I've never seen it fail. For a version that uses nothing but good ol' HTML comments, see <a href="http://stackoverflow.com/questions/738831/how-to-display-browser-specific-html/739207#739207">bobince's answer</a>, which I actually prefer to the Microsoft-provided solution.</p>
http://stackoverflow.com/questions/727285/is-really-impossible-to-write-code-in-an-mvc-master-page/727479#7274790Answer by David Kolar for Is really impossible to write code in an mvc master page?David Kolar2009-04-07T20:34:42Z2009-04-08T12:31:55Z<p>Try changing...</p>
<pre><code><%= Html.ScriptInclude("~/Scripts/jquery.1.2.6.js")%>
</code></pre>
<p>...to...</p>
<pre><code><%# Html.ScriptInclude("~/Scripts/jquery.1.2.6.js")%>
</code></pre>
<p>(Changing <strong>=</strong> to <strong>#</strong>)</p>
http://stackoverflow.com/questions/726491/how-do-i-stop-search-engines-indexing-a-maintenance-page/726553#7265539Answer by David Kolar for How do I stop search engines indexing a maintenance pageDavid Kolar2009-04-07T16:26:28Z2009-04-07T16:46:17Z<p>You should send a <strong><code>503 Service Unavailable</code></strong> HTTP status code, and not a <strong><code>404</code></strong>. Use this in conjunction with a <strong><code>Retry-After</code></strong> header to tell the robots when to come back.</p>
http://stackoverflow.com/questions/714809/why-is-my-div-smaller-than-its-contents/715019#7150191Answer by David Kolar for Why is my DIV smaller than its contents?David Kolar2009-04-03T18:02:32Z2009-04-03T18:02:32Z<p>The absolute positioning is the reason the images are over the text (since nothing is giving the <code>#slideshow <div></code> any height), but your system needs the images to be absolutely positioned in order to stack them on top of each other for the slideshow effect. Since you are using jQuery anyway, you can programmatically expand the container <code><div></code> to the height of the largest image.</p>
<pre><code>var maxHeight = 0;
$("#slideshow img").each(function(){
if (maxHeight < $(this).height()) {maxHeight = $(this).height()}
});
$("#slideshow").height(maxHeight);
</code></pre>
<p>I'm sure someone can point out a more elegant way to write the maxHeight part of the script!</p>
http://stackoverflow.com/questions/697377/when-highlighting-html-on-a-page-it-colors-the-words-blue-but-doesnt-give-it-b/697404#6974040Answer by David Kolar for When highlighting html on a page, it colors the words blue, but doesn't give it blue background?David Kolar2009-03-30T14:16:50Z2009-03-30T14:21:51Z<p>That is exactly the behavior of selecting an image. </p>
<p>CSS cannot directly influence this; it's a function of the browser.</p>
<p><strong>EDIT:</strong> You've added that the background is set to an image, but this would not influence the highlighting at all. Do you have a sample URL?</p>
http://stackoverflow.com/questions/696071/sifr-3-ie6-extra-spacing/697363#6973630Answer by David Kolar for sIFR 3: IE6 Extra SpacingDavid Kolar2009-03-30T14:07:05Z2009-03-30T14:07:05Z<p>You are trying to set the <code>line-height</code> in your <code>sifr-config.js</code>, but I don't think that will have any effect. Try setting the <code>leading</code> instead. It takes a value in pixels, but it doesn't take a unit. </p>
<p>For example: </p>
<pre><code>css: [
'.sIFR-root {leading: -2;}'
]
</code></pre>
http://stackoverflow.com/questions/690189/css-on-email/690457#6904571Answer by David Kolar for CSS on EmailDavid Kolar2009-03-27T16:27:41Z2009-03-27T16:27:41Z<p>In addition to the inline css that everyone is recommending, keep in mind that email is often displayed online within another web page, such as through Yahoo! Mail, Hotmail, or Gmail. You can imagine the chaos that would ensue if <code>body</code> style declarations or random class names were allowed. You should plan for the possibility that anything that is not defined inline will be discarded, although some systems might attempt to preserve these rules with unpredictable success.</p>
http://stackoverflow.com/questions/677655/stop-text-wrapping-in-lists/678006#6780061Answer by David Kolar for Stop text wrapping in listsDavid Kolar2009-03-24T15:44:56Z2009-03-24T15:44:56Z<p>Using <code>list-style-position:outside;</code> would be more doable if you were using an unordered list, which would always take the same amount of space for the marker. Since you are using an ordered list, I would stick with <code>list-style-position:inside;</code>. The problem, as you've discovered, is that IE and Firefox make the same amount of space for the marker irregardless of the number of digits in the marker or the size of the font. So you need to take matters into your own hands by creating the space yourself. The trick here is to know that, by default, IE and Firefox use different properties to create the space. IE uses <code>margin</code> on the <code><ol></code> (30 points) while Firefox uses <code>padding</code> (40 pixels), so you'll have to reset both of these values to achieve cross-browser happiness.</p>
<p>Try this:</p>
<pre><code>ol {
margin-left: 0;
padding-left: 3em;
list-style-position: outside;
}
</code></pre>
http://stackoverflow.com/questions/493837/html-elements-positioned-as-relative-then-moved-15px-still-take-up-same-physica/496648#4966481Answer by David Kolar for Html elements positioned as relative, then moved -15px still take up same physical spaceDavid Kolar2009-01-30T18:37:45Z2009-03-09T19:09:58Z<p>Instead of nudging the <code><li></code>s with 'position: relative', you could apply this to each tab (except for the first tab):</p>
<pre><code>margin-left: -15px;
</code></pre>
<p><strong>EDIT:</strong>
Example of the concept...</p>
<pre><code><div style="text-align:center;">
<img src="http://www.google.com/intl/en_ALL/images/logo.gif" />
<img style="margin-left: -54px;" src="http://www.google.com/intl/en_ALL/images/logo.gif" />
<img style="margin-left: -54px;" src="http://www.google.com/intl/en_ALL/images/logo.gif" />
<img style="margin-left: -54px;" src="http://www.google.com/intl/en_ALL/images/logo.gif" />
</div>
</code></pre>
http://stackoverflow.com/questions/568905/usage-of-the-html-table-summary-attribute/570059#5700590Answer by David Kolar for Usage of the HTML Table "summary" attributeDavid Kolar2009-02-20T15:43:22Z2009-02-20T15:43:22Z<p>I use the <code>summary</code> attribute to describe the <em>structure</em> of the table and the relationships of the rows and columns to each other. It augments the <code><tbody></code> and <code><th></code> elements and <code>scope</code>, <code>axis</code>, and <code>id</code> and <code>headers</code> attributes. It is possible to understand the structure of the table using those elements and attributes, but it's nice to have a plain-speak description right up front. </p>
<p>Don't underestimate how much information is being conveyed visually by simply looking at the table. This is what I try to capture in the <code>summary</code> attribute.</p>
http://stackoverflow.com/questions/560880/empty-html-tags/561772#5617720Answer by David Kolar for Empty HTML tagsDavid Kolar2009-02-18T16:13:58Z2009-02-18T16:13:58Z<p>I've made validation part of my workflow because it helps me catch mistakes early. And while I don't consider empty elements to be a problem, it negates some of the value of using a validator if I have to mentally parse a list of warnings each time and decide whether a warning is important or not. So I try to keep my pages both error- and warning-free so that a quick glance at the <a href="https://addons.mozilla.org/en-US/firefox/addon/249" rel="nofollow">HTML Validator icon in the Firefox status bar</a> only changes when there is a real problem. To that end I keep empty elements "unempty" by inserting an empty comment.</p>
<pre><code><span><!-- --></span>
</code></pre>
<p>(At least that works with the Tidy validator.) </p>
<p>Now, that being said, I don't think this is at all necessary for many situations. It is perfectly reasonably to think that adding eight extra characters to your code just to avoid a validator warning is ridiculous. But it works for me.</p>
http://stackoverflow.com/questions/551803/why-does-code-render-in-code-block/552101#5521015Answer by David Kolar for Why does code render in code block?David Kolar2009-02-16T02:49:48Z2009-02-16T02:49:48Z<p>I do not think [those tags] mean what you think they mean.</p>
<p><code><pre></code> allows you to preserve white space and line feeds. <code><code></code> allows you to semantically indicate that code is being displayed on your page. Both have some default styles (such as applying a fixed-width font), but neither one does anything to escape <code><</code>, <code>></code>, <code>&</code>, or <code>"</code>, so any unescaped HTML code you put in between those tags is going to be processed as HTML. You'll have to use <code>&lt;</code>, <code>&gt;</code>, <code>&amp;</code>, and <code>&quot;</code>. Here's a page where you can paste in text and have it escaped: <a href="http://accessify.com/tools-and-wizards/developer-tools/quick-escape/" rel="nofollow">http://accessify.com/tools-and-wizards/developer-tools/quick-escape/</a></p>
http://stackoverflow.com/questions/535903/why-is-my-css-having-specificity-problems/537323#5373230Answer by David Kolar for Why is my CSS having specificity problems?David Kolar2009-02-11T15:28:37Z2009-02-11T15:28:37Z<p>You have correctly calculated the specificity for each rule, and the specificity of the second rule is a higher value than the specificity of the first rule. <strong>BUT</strong> specificity is only used to "sort rules with the same importance and origin..." (<a href="http://www.w3.org/TR/CSS21/cascade.html#cascading-order" rel="nofollow">http://www.w3.org/TR/CSS21/cascade.html#cascading-order</a>) In other words, specificity is a tie breaker, and in this case there is no tie to be broken.</p>
http://stackoverflow.com/questions/536566/position-child-div-relative-to-grandparent-div/536990#5369900Answer by David Kolar for Position child div relative to grandparent divDavid Kolar2009-02-11T14:22:16Z2009-02-11T14:22:16Z<p>I think you can achieve what you want if you are able to add a "greatgrandparent" and position the child relative to that. </p>
<p>Here's a modification to the code you posted:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
<div style="position: relative;">
<div style="background-color: InfoBackground; border: solid 1px Silver; width: 400px; height: 200px; overflow-y:auto; overflow-x:hidden;">
<div style="background-color: InfoBackground; border: solid 1px Silver; width: 100%; font-size: 11px; padding-left: 210px;" >
<div style="background-color: Window; border: solid 1px Silver; width: 200px; height: 199px; position: absolute; top: 1px; left: 1px;" >
<p style="font-family: Segoe UI; font-size: 11px;">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
</div>
</div>
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/536787/intermixing-html-form-and-table/536886#5368861Answer by David Kolar for Intermixing HTML form and tableDavid Kolar2009-02-11T13:59:42Z2009-02-11T13:59:42Z<p>1) When you create a page using "legal HTML," you can have an expectation that what works in today's browsers will work in tomorrow's browsers, or in some other user agents that you might not have checked the site in. But in the example you've given, the degree to which different browsers agree on how to "fix" the HTML for display is much less certain. It adds a level of predictability to the how the page will display when "valid HTML" is used. Plus, who knows how a user agent such as a screenreader would describe the code in question.</p>
<p>2) Is using a regular anchor tag an option? </p>
<pre><code><td><input type="submit" value="OK"/></td>
<td> or <a href="index.html">Cancel</a></td>
</code></pre>
<p>Or you could use CSS to move a second form and its submit button up into the first form, but the specifics of this might be tricky. </p>
http://stackoverflow.com/questions/529570/dead-center-for-javascript-output/529589#5295890Answer by David Kolar for Dead Center for JavaScript OutputDavid Kolar2009-02-09T19:43:49Z2009-02-09T19:43:49Z<p>How about using <code>text-align: center</code>?:</p>
<pre><code>#content
{
font-family: Helvetica, Geneva, Arial, sans-serif;
font-color: black;
background-color: white;
text-align: center;
}
</code></pre>
http://stackoverflow.com/questions/529079/positioning-columns-with-absolute-positioning-instead-of-floats/529103#5291033Answer by David Kolar for Positioning Columns With Absolute Positioning Instead of FloatsDavid Kolar2009-02-09T17:36:36Z2009-02-09T17:36:36Z<p>A big problem with absolutely-positioned containers is placing content on the page below them when you don't know their heights ahead of time. In your example you have defined the heights of your absolutely-positioned elements, so this shouldn't be a problem for you. If it works for you, use it.</p>
http://stackoverflow.com/questions/512695/how-do-i-prevent-line-breaks-between-a-radio-button-and-its-label-while-still-al/512834#5128340Answer by David Kolar for How do I prevent line breaks between a radio button and its label, while still allowing line breaks within the label itself?David Kolar2009-02-04T19:11:56Z2009-02-04T19:11:56Z<p>If you don't mind the less-neat markup, you can get what you want by simply eliminating the white space between the <code><input></code> and <code><label></code> text.</p>
<pre><code><div class="chopped box">
<label><input type="radio"/>This is a really long string with no spaces</label>
</div>
<div class="chopped box">
<label><input type="radio"/>This_is_a_really_long_string_with_no_spaces</label>
</div>
</code></pre>
<p>(<code><label></code>s placed around <code><input></code>s per JacobM's suggestion.)</p>
<p>If you want a bit of room between the <code><input></code> and the first character of the label, use a non-breaking space (<code>&nbsp;</code>) entity.</p>
http://stackoverflow.com/questions/507606/css-ul-menu-in-ie-6/507647#5076471Answer by David Kolar for CSS UL Menu in IE 6David Kolar2009-02-03T15:49:00Z2009-02-03T15:49:00Z<p>I don't have a solution to the main issue, but you could change your code formatting to look nicer and still work in IE 6.</p>
<pre><code><div class="nMenu">
<ul>
<li><a href="">One</a></li
><li><a href="">Two</a></li
><li><a href="">Three</a></li
><li><a href="">Four</a></li
><li><a href="">Five</a></li>
</ul>
</div>
</code></pre>
http://stackoverflow.com/questions/463785/place-radio-button-label-above-using-css/470177#4701771Answer by David Kolar for Place Radio Button Label Above Using CSSDavid Kolar2009-01-22T17:50:41Z2009-01-22T17:50:41Z<p>I think I know what you are looking for, but correct me if I'm missing the mark. I'm assuming you will want the radio buttons centered under their labels. This is a lot easier if you are okay with adding <code><br></code>s to your markup.</p>
<p><strong>CSS</strong></p>
<pre><code><style type="text/css">
label {
float: left;
padding: 0 1em;
text-align: center;
}
</style>
</code></pre>
<p><strong>HTML</strong></p>
<pre><code><label for="myChoice1">Choice 1<br>
<input type="radio" id="myChoice1" name="myChoice" value="1">
</label>
<label for="myChoice2">Choice ABC<br>
<input type="radio" id="myChoice2" name="myChoice" value="ABC">
</label>
<label for="myChoice3">Choice qwerty<br>
<input type="radio" id="myChoice3" name="myChoice" value="qwerty">
</label>
<label for="myChoice4">Choice--final<br>
<input type="radio" id="myChoice4" name="myChoice" value="final">
</label>
</code></pre>
<p>...and then use your own clearing method to move to the next line.</p>
<p>(The use of the <code>for</code> attribute in the <code><label></code>s is a little redundant here, but it won't hurt anything.)</p>
http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1505669#1505669Comment by David Kolar on What's the worst security hole you've ever seen?David Kolar2009-12-08T16:06:37Z2009-12-08T16:06:37ZI see this all the time. Ugh! It's an underappreciated problem.http://stackoverflow.com/questions/1798514/how-to-apply-this-css-class-to-given-link-buttonComment by David Kolar on how to apply this css class to given link button?David Kolar2009-11-25T17:43:45Z2009-11-25T17:43:45ZIt's confusing to conflate the HTML element "<a>", the css class "a", and the id "A" all within the same element. http://stackoverflow.com/questions/1646424/html-and-css-only-html-tags-reuse-across-different-pages/1646478#1646478Comment by David Kolar on html and css only: html tags reuse across different pages.David Kolar2009-10-29T20:56:19Z2009-10-29T20:56:19ZOr Dreamweaver and its templating system, if the OP is willing to trade money for ease of use. http://stackoverflow.com/questions/1543937/have-you-used-any-databases-only-hosting-serviceComment by David Kolar on Have you used any databases only hosting service?David Kolar2009-10-09T14:22:23Z2009-10-09T14:22:23ZI imagine that these are few and far between. Most people who want the database hosted will also want the site itself hosted. Using separate hosts for these makes your site dependent on <i>two</i> hosts being up and running instead of one, so it makes sense to use the same host for both just to cut out a point of failure.http://stackoverflow.com/questions/1468168/ie7-not-caching-css-image-over-sslComment by David Kolar on IE7 not Caching CSS Image over SSLDavid Kolar2009-09-23T20:33:13Z2009-09-23T20:33:13ZAre you certain that this only happens over SSL and does not occur over non-SSL pages?http://stackoverflow.com/questions/1266601/why-are-certain-files-not-published-in-the-appdata-folder/1273383#1273383Comment by David Kolar on Why are certain files not published in the App_Data folder?David Kolar2009-09-14T17:23:34Z2009-09-14T17:23:34ZWhat causes some files to be marked "None" instead of "Content" to begin with?http://stackoverflow.com/questions/1327325/updating-mysql-with-textarea-content-without-reloading/1327982#1327982Comment by David Kolar on Updating MySQL with textarea content without reloadingDavid Kolar2009-08-26T17:19:53Z2009-08-26T17:19:53ZIn general, this is an intriguing no-JavaScript fallback strategy even if you do use AJAX. http://stackoverflow.com/questions/1336036/matching-heights-of-inline-elementsComment by David Kolar on Matching heights of inline elementsDavid Kolar2009-08-26T16:49:41Z2009-08-26T16:49:41ZI still can't tell if you are asking about heights or widths.http://stackoverflow.com/questions/1336036/matching-heights-of-inline-elements/1336053#1336053Comment by David Kolar on Matching heights of inline elementsDavid Kolar2009-08-26T16:48:13Z2009-08-26T16:48:13ZAssuming the right and left divs are what cause the container to expand, then 100% of what?http://stackoverflow.com/questions/794533/team-build-temp-global-asax1-error-aspparse-could-not-load-type-mvcComment by David Kolar on Team Build - /temp/global.asax(1): error ASPPARSE: Could not load type 'Mvc'David Kolar2009-08-25T20:21:46Z2009-08-25T20:21:46ZI had the same problem and this answer fixed it: <a href="http://stackoverflow.com/questions/755645/asp-net-mvc-1-0-afterbuilding-views-fails-on-tfs-build/1098441#1098441" rel="nofollow" title="asp net mvc 1 0 afterbuilding views fails on tfs build">stackoverflow.com/questions/755645/…</a>
http://stackoverflow.com/questions/30310/asp-net-mvc-how-do-i-enable-dashes-in-my-urls/540583#540583Comment by David Kolar on Asp.Net MVC: How do I enable dashes in my urls?David Kolar2009-08-20T14:49:09Z2009-08-20T14:49:09Z@Eduardo I think the ActionName attribute was added for Preview 5, which came out just after Phil's post.http://stackoverflow.com/questions/1300366/meaning-of-the-lulz-in-commentsComment by David Kolar on meaning of "the lulz" in comments?David Kolar2009-08-19T14:33:33Z2009-08-19T14:33:33ZThe New York Times had an article on "the lulz" <a href="http://www.nytimes.com/2008/08/03/magazine/03trolls-t.html" rel="nofollow">nytimes.com/2008/08/…</a> which was mocked on episode 154 of This Week In Tech <a href="http://twit.tv/154" rel="nofollow">twit.tv/154</a>http://stackoverflow.com/questions/1058088/jquery-selector-question/1058104#1058104Comment by David Kolar on JQuery Selector QuestionDavid Kolar2009-06-29T13:10:22Z2009-06-29T13:10:22ZThat's why the dollar sign is being used in the in [id$='ddlTags']. With that modifier, "ddlTags" only need to appear at the end of the id, so it should survive ASP.NET's mangling. http://stackoverflow.com/questions/751624/putting-2-divs-side-by-side-internet-explorer-6-7-float-and-padding-bug-fixComment by David Kolar on Putting 2 divs side by side / Internet Explorer 6/7 float and padding (?) bug fixDavid Kolar2009-04-15T13:22:36Z2009-04-15T13:22:36ZKnowing the actual HTML content of <div id="right"> might be useful. The screenshot makes it like a difference in padding on the form elements between FF and IE.http://stackoverflow.com/questions/751360/how-can-i-get-list-items-to-stay-together-using-css/751366#751366Comment by David Kolar on How can i get List items to stay together using CSS?David Kolar2009-04-15T13:14:41Z2009-04-15T13:14:41ZWould this cause problems for content that followed the <ul>? You'd need that content to "clear" the <ul>, but not the <img>s.