User 81bronco - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:19:00Z http://stackoverflow.com/feeds/user/1153 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1397141/asp-net-mvc-keeping-the-controller-and-view-separate-by-using-strongly-typed-ob/1397169#1397169 2 Answer by 81bronco for [ASP.NET MVC] Keeping the controller and view separate by using strongly-typed objects 81bronco 2009-09-09T01:37:34Z 2009-09-09T01:37:34Z <p>I think that the tutorials and book are using this method to try and make things a little easier to start out. However, I my opinion is that this might be starting some bad habits as you suggest. </p> <p>The way I do it roughly based upon this <a href="http://www.lostechies.com/blogs/jimmy%5Fbogard/archive/2009/06/29/how-we-do-mvc-view-models.aspx" rel="nofollow">article by Jimmy Bogard</a>:</p> <ul> <li>All views are strongly-typed</li> <li>One specific ViewModel class per View</li> <li>The View determines what data is in the ViewModel</li> </ul> <p>I don't use the Auto-Mapper as he does though. I usually use a utility method to convert my Model object to the associated ViewModel object.</p> http://stackoverflow.com/questions/1369425/image-map-w-image-based-rollovers-bounded-by-area-coordinates-jquery-if-possible/1369820#1369820 1 Answer by 81bronco for Image Map w/Image-Based Rollovers Bounded by AREA Coordinates, jQuery if Possible 81bronco 2009-09-02T20:02:09Z 2009-09-02T21:51:07Z <p>I don't think you can do this with a true image map:</p> <pre><code>&lt;img usemap="#map" /&gt; &lt;map name="map"&gt; &lt;area coords="foo,bar"&gt; &lt;area coords="foo,bar"&gt; &lt;area coords="foo,bar"&gt; &lt;/map&gt; </code></pre> <p>But, there is a way to do what you are wanting with only HTML and CSS using a variation of the <a href="http://www.alistapart.com/articles/sprites" rel="nofollow">CSS sprites technique</a>. A tutorial of how to do it is here: <a href="http://www.noobcube.com/tutorials/html-css/css-image-maps-a-beginners-guide-/" rel="nofollow">http://www.noobcube.com/tutorials/html-css/css-image-maps-a-beginners-guide-/</a></p> <p><strong>A short overview of this technique:</strong> <a href="http://demo.raleighbuckner.com/so/1369820/" rel="nofollow">DEMO Code</a></p> <p>First, create your image as you would normally. Then, create your various over states by doubling the canvas size of your image and putting the hover look in the new bottom half of the image. You will end up with something like this:</p> <p><img src="http://demo.raleighbuckner.com/so/1369820/test.jpg" alt="I hope your image looks better than this." /></p> <p>Next comes the HTML and CSS. We will use an unordered list:</p> <pre><code>&lt;style&gt; #fakeMap { list-style: none; margin: 0; padding: 0; /* removes the default UL styling */ position: relative; /* allows the LIs to be positioned */ width: 200px; /* width of the image */ height: 100px; /* height of the image */ background: url(test.jpg) no-repeat 0 0; /* shows the image */ } #fakeMap li { position:absolute; /* these will be the "area" elements */ } #fakeMap a { display:block; /* along with the width and height, makes the link */ width:100%; /* clickable for the full size of the LI */ height:100%; text-indent:-5000px; /* pushes the text of the link offscreen */ } /* Set up each LI to be the right size and positon. */ #maplink1 { width:15px; height:15px; top:10px; left:10px; } #maplink2 { width:20px; height:20px; top:30px; left:30px; } #maplink3 { width:80px; height:30px; top:20px; left:70px; } /* Set the image for all of the links. */ #fakeMap a:hover { background: url(test.jpg) no-repeat; } /* Set the position of the bg for each link individually. */ #fakeMap #maplink1 a:hover { background-position:-10px -110px; } #fakeMap #maplink2 a:hover { background-position:-30px -130px; } #fakeMap #maplink3 a:hover { background-position:-70px -120px; } &lt;/style&gt; &lt;ul id="fakeMap"&gt; &lt;li id="maplink1"&gt;&lt;a href="link1.htm"&gt;Link 1 Text&lt;/a&gt;&lt;/li&gt; &lt;li id="maplink2"&gt;&lt;a href="link2.htm"&gt;Link 2 Text&lt;/a&gt;&lt;/li&gt; &lt;li id="maplink3"&gt;&lt;a href="link3.htm"&gt;Link 3 Text&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> http://stackoverflow.com/questions/1369556/why-cant-i-clearleft-these-labels-in-ie7/1369795#1369795 1 Answer by 81bronco for Why can't I clear:left these labels in IE7? 81bronco 2009-09-02T19:56:20Z 2009-09-02T21:04:50Z <p>EDIT: I added a width to the fieldset and a right margin to the title label:</p> <pre><code>form fieldset { width:320px; } form label.field-title { width: 50px; margin: 0 250px 0 0; clear: left; } </code></pre> <p>This makes the title &lt;label&gt; take up most of the fieldset width, forcing the other elements down into place. </p> <p>You can see a demo of this by going here with IE7: <a href="http://demo.raleighbuckner.com/so/1369556/" rel="nofollow">http://demo.raleighbuckner.com/so/1369556/</a></p> <p>EDIT 2: The best solution to this is to do as Emily (and wheresrhys in a comment to Emily's answer) suggests and put each line of your form fields in a wrapper. Personally, I like to use unordered lists (like wheresrhys). An example of this can be seen in this demo: <a href="http://demo.raleighbuckner.com/so/1369556/default2.htm" rel="nofollow">http://demo.raleighbuckner.com/so/1369556/default2.htm</a></p> http://stackoverflow.com/questions/1353282/blueprint-css-pre-inside-div-not-displaying-as-expected/1354090#1354090 0 Answer by 81bronco for blueprint css pre inside div not displaying as expected 81bronco 2009-08-30T15:19:57Z 2009-08-30T15:19:57Z <p>The reason your &lt;div&gt;s are wrapping has nothing to do with the &lt;pre&gt; tag. </p> <p>Each of the &lt;div&gt;s have a width of 470px and a right margin of 10px. For the two, this is a total of 960px, which is 10px wider than your containing &lt;div&gt; (950px).</p> <p>The solution here is to use the "last" class (provided by the Blueprint CSS framework) to the last &lt;div&gt;:</p> <pre><code>&lt;div class="span-12" style="background:#eee;"&gt;&lt;pre&gt;Hello world asdf asdf asdf asd fas df asd fas dfas dfasd f&lt;/pre&gt;&lt;/div&gt; &lt;div class="span-12 last" style="background:#ccc;"&gt;&lt;pre&gt;Hello world asdf asdf asdf asd fas df asd fas dfas dfasd f&lt;/pre&gt;&lt;/div&gt; </code></pre> <p>This class removes the right margin and allows the &lt;div&gt;s to fit within their container.</p> <p>You can see a demo of this here: <a href="http://demo.raleighbuckner.com/so/1353282/" rel="nofollow">http://demo.raleighbuckner.com/so/1353282/</a></p> http://stackoverflow.com/questions/1352333/dry-out-my-css-but-want-to-keep-the-basic-css-syntax/1352343#1352343 3 Answer by 81bronco for DRY out my CSS, but want to keep the basic CSS syntax. 81bronco 2009-08-29T20:52:07Z 2009-08-29T20:52:07Z <p>There is a new project out called {less} that sounds like what you are looking for: <a href="http://lesscss.org/" rel="nofollow">http://lesscss.org/</a></p> http://stackoverflow.com/questions/1351649/does-the-content-property-exist-in-html/1351682#1351682 1 Answer by 81bronco for Does the content property exist in html 81bronco 2009-08-29T15:17:27Z 2009-08-29T15:37:41Z <p>This is most likely a custom attribute that the jQuery tooltip creators made up to hold the text for the tooltip. This is unfortunately a common practice with many jQuery plugins (although most put stuff like this in the rel="" attribute instead).</p> <p>The downside of this is that if you are concerned with validatiing your HTML, this will cause that to fail.</p> <p>The upside is that browsers will ignore attributes that they do not expect, so it will not affect the rendering of the page.</p> <p>The proper place for this would be the title="" attribute, but without the extra HTML markup in the value (&lt;span&gt; in this case).</p> <p>If you must have the extra markup, be sure to encode it:</p> <pre><code>title="&amp;gt;span&amp;lt;Image Title&amp;lt;/span&amp;gt" </code></pre> <p>But, be aware that if the Javascript fails, the user will see this encoded text as the built-in, browser-rendered tooltip.</p> http://stackoverflow.com/questions/1350672/email-and-css-or-tables/1351430#1351430 4 Answer by 81bronco for Email and css OR tables 81bronco 2009-08-29T13:22:45Z 2009-08-29T13:22:45Z <p>The best advice for designing and building HTML for emails if you want "rock solid" as you say is to pretend you are living in 1997 and use &lt;table&gt;, image slices, and even the dreaded &lt;font&gt;. </p> <p>Some CSS is supported, as seen in this <a href="http://www.campaignmonitor.com/css/" rel="nofollow">chart of compatibility across different email clients at the Campaign Monitor site</a>. The biggest hit is that if you have any users on GMail, inline CSS is your only option as GMail strips all &lt;style&gt; tags.</p> <p>As far as the rounded corners go, you will have to use images.</p> http://stackoverflow.com/questions/1348741/can-jquery-manipulate-the-global-css-definition-of-the-document/1350304#1350304 0 Answer by 81bronco for can jquery manipulate the global css definition of the document? 81bronco 2009-08-29T02:55:40Z 2009-08-29T02:55:40Z <p>I would probably handle this by having your checkbox add and remove a class form the &lt;body&gt; element:</p> <pre><code>$('body').addClass('hideABC'); </code></pre> <p>And have the following CSS:</p> <pre><code>body.hideABC div.abc { display:none; } body div.abc { display:block; } </code></pre> <p>So, if elsewhere in your page a &lt;div&gt; gets teh '.abc' class added to it, then it will take on the first CSS rule and be hidden.</p> http://stackoverflow.com/questions/884852/how-can-i-disable-session-state-in-asp-net-mvc/1349921#1349921 0 Answer by 81bronco for How can I disable session state in ASP.NET MVC? 81bronco 2009-08-28T23:44:29Z 2009-08-28T23:44:29Z <p>According to Brad Wilson, this has been fixed in MVC 2 Preview 1. See <a href="http://crinket.com/session-state-for-aspnet-mvc" rel="nofollow">here</a> and <a href="http://twitter.com/bradwilson/status/3614026482" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1329350/iframe-cant-show-image-when-browsed-with-file-protocol-in-ie/1349281#1349281 -1 Answer by 81bronco for iframe can't show image when browsed with "file" protocol in IE 81bronco 2009-08-28T20:49:36Z 2009-08-28T20:49:36Z <p>I am pretty sure this is a security feature to keep malicious code encoded within an image from running on your local computer. </p> http://stackoverflow.com/questions/1348559/are-there-hosted-jquery-ui-themes-anywhere/1349238#1349238 3 Answer by 81bronco for Are there hosted jQuery UI themes anywhere? 81bronco 2009-08-28T20:41:23Z 2009-08-28T20:41:23Z <p>I could not find it on the Google site, but they are <a href="http://blog.jqueryui.com/2009/03/jquery-ui-17/" rel="nofollow">listed on the jQueryUI blog</a> down the page in a section called "CSS framework and themes on Google AJAX Libraries API":</p> <blockquote> <p><strong>CSS framework and themes on Google AJAX Libraries API</strong></p> <p>As before, the latest stable release of jQuery UI (now 1.7) is hosted on Google’s CDN. New in this release, however, Google is also hosting the new jQuery UI CSS Framework, as well as our current suite of pre-built themes: <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/base/jquery-ui.css" rel="nofollow">base</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/black-tie/jquery-ui.css" rel="nofollow">black-tie</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/blitzer/jquery-ui.css" rel="nofollow">blitzer</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/cupertino/jquery-ui.css" rel="nofollow">cupertino</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/dot-luv/jquery-ui.css" rel="nofollow">dot-luv</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/excite-bike/jquery-ui.css" rel="nofollow">excite-bike</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/hot-sneaks/jquery-ui.css" rel="nofollow">hot-sneaks</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/humanity/jquery-ui.css" rel="nofollow">humanity</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/mint-choc/jquery-ui.css" rel="nofollow">mint-choc</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/redmond/jquery-ui.css" rel="nofollow">redmond</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/smoothness/jquery-ui.css" rel="nofollow">smoothness</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/south-street/jquery-ui.css" rel="nofollow">south-street</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/start/jquery-ui.css" rel="nofollow">start</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/swanky-purse/jquery-ui.css" rel="nofollow">swanky-purse</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/trontastic/jquery-ui.css" rel="nofollow">trontastic</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/ui-darkness/jquery-ui.css" rel="nofollow">ui-darkness</a>, <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/ui-lightness/jquery-ui.css" rel="nofollow">ui-lightness</a>, and <a href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/vader/jquery-ui.css" rel="nofollow">vader</a>. </p> </blockquote> http://stackoverflow.com/questions/1347579/keeping-higher-menus-highlighted-in-suckerfish-vertical/1349172#1349172 0 Answer by 81bronco for keeping higher menus highlighted in suckerfish vertical 81bronco 2009-08-28T20:29:12Z 2009-08-28T20:29:12Z <p>You need to move the color styles from the &lt;a&gt; tag to the &lt;li&gt; tags:</p> <pre><code>#nav li { /* all list items */ ... background-color : white; color : black; } #nav li:hover, li.sfhover{ color : white; background-color : black; } </code></pre> <p>And also set the &lt;a&gt; to take it's color from it's parent:</p> <pre><code>#nav li a { color:inherit; } </code></pre> <p>Please see a version of your example with these changes made here: <a href="http://demo.raleighbuckner.com/so/1347579/" rel="nofollow">http://demo.raleighbuckner.com/so/1347579/</a></p> <p>The reason for this change is that the second and third levels of the navigation are children of the &lt;li&gt; tag and not of the &lt;a&gt; tag. So, when you mose over the sub-list, you are no longer hovering over the &lt;a&gt; and the color is not longer applicable.</p> <p>Moving the coloring style up to the &lt;li&gt; allows the hover to still be valid.</p> http://stackoverflow.com/questions/1270978/safari-flash-wmode-not-working-anything-wrong-with-this-embed/1272599#1272599 1 Answer by 81bronco for Safari flash wmode not working - anything wrong with this embed? 81bronco 2009-08-13T15:12:15Z 2009-08-28T02:01:23Z <p>Can you post a link to an example page of what you are trying to accomplish?</p> <p>I have set up a demo using your code and a bit of content here: <a href="http://demo.raleighbuckner.com/so/1270978/" rel="nofollow">http://demo.raleighbuckner.com/so/1270978/</a> </p> <p>Not knowing how your other content is set up, I chose to put the flash element in a &lt;div&gt; and the content in a separate &lt;div&gt;. The flash container is absolutely positioned to pull it out of the page flow and allow the content to move over it.</p> <p>I also added another test to the page with the wmode set to "transparent".</p> <p>Here's what I see in IE7, FF3 and Safari 4 with Flash Player 10:</p> <ul> <li>Both content areas appear above the flash.</li> <li>The top flash does not let the page background show through.</li> <li>The bottom flash lets the page background show through.</li> </ul> <p>If you see the same, then there is most likely something else in your HTML that is throwing things off. Post a link to your page and I'll see what I can figure out.</p> <p>If you do not see the same, then there could be something borked with your Safari and/or Flash Player.</p> http://stackoverflow.com/questions/1296662/swfaddress-conflict-with-swfobjects-callback-argument/1338842#1338842 0 Answer by 81bronco for SwfAddress conflict with SwfObject's 'callback' argument 81bronco 2009-08-27T04:25:53Z 2009-08-27T04:25:53Z <p>This was a tough one. </p> <p>Quick answer: You need to pass empty objects instead of "null" for the flashVars and attributes: (<a href="http://demo.raleighbuckner.com/so/1296662/" rel="nofollow">See my corrected demo code here</a>)</p> <pre><code>swfobject.embedSWF("http://www.bobbyvandersluis.com/swfobject/testsuite_2_2/test6.swf", "myContent1", "300", "120", "9.0.0", "expressInstall.swf", {}, {}); swfobject.embedSWF("http://www.bobbyvandersluis.com/swfobject/testsuite_2_2/test6.swf", "myContent2", "300", "120", "9.0.0", "expressInstall.swf", {}, params, {}, outputStatus); </code></pre> <p>Full answer: Digging into the SWFAddress source code, they are rewriting the SWFObject embed functionality so they can inject their own. One of the things they have to do to do this is transfer all of the parameters you pass in to their own function. The "null" you were passing for the attributes object was causing an error in the SWFAddress code here:</p> <pre><code>var _s2e = swfobject.embedSWF; swfobject.embedSWF = function() { _args = arguments; if (typeof _args[8] == UNDEFINED) _args[8] = {}; if (typeof _args[8].id == UNDEFINED) _args[8].id = _args[1]; // &lt;-- ERROR here when this parameter (attributes) is null. _s2e.apply(this, _args); _ref.addId(_args[8].id); } </code></pre> <p>The error caused the whole second embed to fail.</p> http://stackoverflow.com/questions/1338381/jquery-easeoutbounce-direction/1338596#1338596 1 Answer by 81bronco for Jquery easeOutBounce direction? 81bronco 2009-08-27T02:43:50Z 2009-08-27T02:43:50Z <p>Is this what you are trying to achieve? <a href="http://demo.raleighbuckner.com/so/1338381/" rel="nofollow">http://demo.raleighbuckner.com/so/1338381/</a></p> <p>If so, all I did (other than removing the extra examples) is to change this CSS:</p> <pre><code>#sliding-navigation1 li { text-align: right; } </code></pre> <p>to this:</p> <pre><code>#sliding-navigation1 li { text-align: right; float:right; clear:both; } </code></pre> http://stackoverflow.com/questions/1324553/how-can-i-remove-zoom-icon-in-opera-mobile/1337510#1337510 1 Answer by 81bronco for How can I remove zoom icon in opera mobile 81bronco 2009-08-26T21:09:37Z 2009-08-26T21:09:37Z <p>It looks like they are using the "viewport" meta tag to specify the width of the page. This probably is set to smaller than mobile Opera's available scren width, so the Zoom button is not needed.</p> <p>Here is the tag as it is used on the mobile version of Opera.com:</p> <pre><code>&lt;meta name="viewport" content="width=320" /&gt; </code></pre> <p>To keep your page from scaling, I would set the tag to be as follows:</p> <pre><code>&lt;meta name="viewport" content="width=device-width,height=device-height,user-scalable=no" /&gt; </code></pre> <p>Although keeping the user from scaling would not be my first choice UI-wise.</p> <p><a href="http://dev.opera.com/articles/view/opera-mobile-9-5-the-developer-angle/" rel="nofollow">The opera developer site describes the support of this tag</a>:</p> <blockquote> <p>The viewport meta tag</p> <p>The viewport meta tag contains information about the preferred settings of the viewport for viewing the HTML page it is contained within. Just like any other meta tag, viewport sits inside the head element of your HTML page—browsers that support it use the information to display the web page more appropriately for that device, while browsers that don’t simply ignore it. It was originally created by Apple to improve the way web pages display on the iPhone, but we have added support for it in Opera Mobile 9.5 because it is a good way of optimizing display information for different mobile devices. The tag looks like so:</p> <p>&lt;meta name = "viewport" content = "width = device-width, height = device-height" /&gt;</p> <p>All it contains is the meta attribute, which specifies that this is a viewport meta tag, and the content attribute, which contains a comma-delimited list of the different values you want to specify for this page. The different pieces of information you can specify are as follows:</p> <ul> <li>width and height: These specify the width and height that the viewport should be set at for this web page. The values can be set in pixels, or you can use the device-width and device-height values, respectively, to specify that the width and height should be set as the full width and height of the device’s screen. The default value of width is 980 pixels, and it can be set from 200 to 10,000 pixels. The default value of height is calculated from the width of the device and its aspect ratio, and it can be set from 223 to 10,000 pixels.</li> <li>initial-scale: This sets the initial scale of the web page when it is first displayed. By default it just fills up the whole screen of the device, unless you deliberately set it otherwise.</li> <li>minimum-scale and maximum-scale: These specify the minimum and maximum amounts that the user is allowed to zoom in and out, their values being multipliers. minimum-scale has a default value of 0.25, and its value can range from just above zero to 10.0. maximum-scale’s value can also range from just above zero to 10.0.</li> <li>user-scalable: Specifies whether the user is allowed to zoom in and out—possible values are yes and no, with yes being the default.</li> </ul> <p>Opera Mobile 9.5 fully supports the viewport meta tag, with a few notable specific behaviours. It ignores user-scalable, minimum-scale and maximum-scale because we believe that zooming is a browser feature that should always be available for users. Also, as the presence of the viewport meta tag in the page’s head section indicates the author has taken care of optimizing for mobile, small screen rendering is not applied. This means that viewport-enabled pages will look exactly the same whether “Mobile view” is switched on or off.</p> <p>It is recommended that width and height values are not hardcoded for a single device, such as the iPhone; instead you should set their values to device-width and device-height, so that your pages also work nicely on VGA, QVGA, WVGA and WQVGA devices.</p> </blockquote> http://stackoverflow.com/questions/1303628/css-link-spacing-and-paragraph-spacing/1308242#1308242 0 Answer by 81bronco for CSS link Spacing and Paragraph Spacing 81bronco 2009-08-20T19:10:47Z 2009-08-20T19:10:47Z <p>You should be able to do this with each line being a &lt;p&gt;, but you will have to add an extra &lt;br&gt; at the end of each one:</p> <p>HTML:</p> <pre><code>&lt;h3&gt;Nature Orange&lt;/h3&gt; &lt;p&gt;hey hows it going&lt;br /&gt;&lt;/p&gt; &lt;p&gt;this one is&lt;br /&gt;&lt;/p&gt; &lt;p&gt;short and this one is longer&lt;br /&gt;&lt;/p&gt; &lt;p&gt;will this text&lt;br /&gt;&lt;/p&gt; &lt;p&gt;do what I&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Want?&lt;/p&gt; </code></pre> <p>CSS: </p> <pre><code>.cover p{ display:inline; color: #000; background-color: #fff; margin:0; padding:0 5px; line-height:1; } </code></pre> <p>I uploaded a demo of this here: <a href="http://demo.raleighbuckner.com/so/1303628/" rel="nofollow">http://demo.raleighbuckner.com/so/1303628/</a></p> http://stackoverflow.com/questions/1305647/sifr-in-main-menu/1308056#1308056 0 Answer by 81bronco for sIFR in main menu 81bronco 2009-08-20T18:39:05Z 2009-08-20T18:39:05Z <p>You would need to create the hover effect in your sIFR flash file. sIFR replaces the HMTL element in the page with a Flash SWF. This SWF is not affected by CSS classes at all.</p> http://stackoverflow.com/questions/1303302/centering-text-in-ie-7-conditional-css/1308026#1308026 1 Answer by 81bronco for Centering Text in IE 7 / Conditional CSS 81bronco 2009-08-20T18:33:05Z 2009-08-20T18:33:05Z <p>For reference, the page being referred to is located here: <a href="http://talentforceinc.com/Employers%5FHome.html" rel="nofollow">http://talentforceinc.com/Employers_Home.html</a>.</p> <p>The specific code referred to is here: <a href="http://www.i-simplyrecruit.com/isrjobs/talentforce/ShowJobColors.asp" rel="nofollow">http://www.i-simplyrecruit.com/isrjobs/talentforce/ShowJobColors.asp</a> and also shown below for reference. </p> <p>The first problem is (as you mentioned), the code is ugly. So ugly in fact that it is very hard to see that:</p> <ul> <li>There are unfinished HTML space entities (&amp;nbsp;) in the "Cementing Service..." and "Document Layout Specialist" cells. This is causing portions of the ending tags that follow to be ignored.</li> <li>HTML attributes for width and height are integer values only. Do not specify "px". ex. 450 instead of 450px.</li> <li>The closing &lt;div&gt; tag in each cell (with a class of "sidebar") is placed after the ending &lt;td&gt; and &lt;tr&gt;.</li> </ul> <p>After fixing these errors, I also notice that you have a table width set at 185 and each table cell width is set at 100. This is keeping the table cells from taking up the entire width of the table, making the text within them not able to be centered within the width of the table. Removing the cell width fixes this problem.</p> <p>I have uploaded a test page with the original unmodified code and the results of my changes: <a href="http://demo.raleighbuckner.com/so/1303302/" rel="nofollow">http://demo.raleighbuckner.com/so/1303302/</a></p> <p>Original HTML for reference: </p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://demo.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Latest Jobs&lt;/title&gt; &lt;link href="http://www.talentforceinc.com/talentforce.css" rel="stylesheet" type="text/css" /&gt; &lt;!--[if LTE IE 7]&gt; &lt;link href="http://www.talentforceinc.com/talentforce_IE.css" rel="stylesheet" type="text/css" /&gt; &lt;![endif]--&gt; &lt;style type="text/css"&gt; &lt;!-- td { text-align: center; align: center; } --&gt; &lt;/style&gt; &lt;script type="text/javascript"&gt; &lt;!-- function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } function ShowMore(pID) { var pParm = "Candidates_jobSearch3.asp?id=" + pID; MM_openBrWindow(pParm,"jobDetail","scrollbars=yes,width=600,height=600 resizable=no"); } //--&gt; &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;table width=185px bgcolor=white border=0 cellpadding=0 cellspacing=0 style='text-align:center'&gt;&lt;tr&gt;&lt;td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#00AADD'&gt;&lt;div class='sidebar'&gt;&lt;div align='center'&gt;&lt;a style='text-align:center' href='#' onclick='javascript:ShowMore(&amp;quot;P0006008-0032&amp;quot;);'&gt;Contractor&amp;nbsp;Engineer&amp;nbsp;Specialist&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/div&gt;&lt;tr&gt;&lt;td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#AADDEE'&gt;&lt;div class='sidebar'&gt;&lt;div align='center'&gt;&lt;a style='text-align:center' href='#' onclick='javascript:ShowMore(&amp;quot;N0003008-0077&amp;quot;);'&gt;.Net&amp;nbsp;&amp;&amp;nbsp;Sql&amp;nbsp;server&amp;nbsp;An&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/div&gt;&lt;tr&gt;&lt;td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#FFCC55'&gt;&lt;div class='sidebar'&gt;&lt;div align='center'&gt;&lt;a style='text-align:center' href='#' onclick='javascript:ShowMore(&amp;quot;S5696007-0004&amp;quot;);'&gt;Cementing&amp;nbsp;Service&amp;nbsp;Sup/Deep&amp;nbs&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/div&gt;&lt;tr&gt;&lt;td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#22AA55'&gt;&lt;div class='sidebar'&gt;&lt;div align='center'&gt;&lt;a style='text-align:center' href='#' onclick='javascript:ShowMore(&amp;quot;S4082007-0012&amp;quot;);'&gt;Coil&amp;nbsp;Tubing&amp;nbsp;Operator/Equipment&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/div&gt;&lt;tr&gt;&lt;td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#9999AA'&gt;&lt;div class='sidebar'&gt;&lt;div align='center'&gt;&lt;a style='text-align:center' href='#' onclick='javascript:ShowMore(&amp;quot;L0008004-0157&amp;quot;);'&gt;Loads&amp;nbsp;Analysis &lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/div&gt;&lt;tr&gt;&lt;td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#EE9922'&gt;&lt;div class='sidebar'&gt;&lt;div align='center'&gt;&lt;a style='text-align:center' href='#' onclick='javascript:ShowMore(&amp;quot;D6452009-0448&amp;quot;);'&gt;Document&amp;nbsp;Layout&amp;nbsp;Specialist&amp;nbs&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/div&gt;&lt;tr&gt;&lt;td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#CCCCCC'&gt;&lt;div class='sidebar'&gt;&lt;div align='center'&gt;&lt;a style='text-align:center' href='#' onclick='javascript:ShowMore(&amp;quot;L0008004-0161&amp;quot;);'&gt;Technical&amp;nbsp;Trainer&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/div&gt;&lt;tr&gt;&lt;td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#00AAAA'&gt;&lt;div class='sidebar'&gt;&lt;div align='center'&gt;&lt;a style='text-align:center' href='#' onclick='javascript:ShowMore(&amp;quot;A0029005-0025&amp;quot;);'&gt;Q.A.&amp;nbsp;Engineer &lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/div&gt;&lt;tr&gt;&lt;td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#888888'&gt;&lt;div class='sidebar'&gt;&lt;div align='center'&gt;&lt;a style='text-align:center' href='#' onclick='javascript:ShowMore(&amp;quot;E0001008-0090&amp;quot;);'&gt;Clerk&amp;nbsp;&amp;nbsp;Secret&amp;nbsp;Clearance&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/div&gt;&lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1302055/floating-labels-and-divs-on-a-form/1302571#1302571 0 Answer by 81bronco for Floating Labels and Divs on a form 81bronco 2009-08-19T20:50:57Z 2009-08-19T20:50:57Z <p>Your problem is most likely that the label and input combination is too wide for your container in IE6 (<a href="http://www.positioniseverything.net/explorer/doubled-margin.html" rel="nofollow">perhaps due to a bug in IE6</a>). Try either making your container slightly larger or the labels/inputs slightly smaller. </p> <p>Also, I recently <a href="http://demo.raleighbuckner.com/bellware/css-forms/" rel="nofollow">put together a demo of different form styling techniques</a> for someone. They might help overall.</p> http://stackoverflow.com/questions/1293302/flash-8-actionscript-stage-height/1293787#1293787 1 Answer by 81bronco for Flash 8 Actionscript - Stage.height 81bronco 2009-08-18T13:21:42Z 2009-08-18T13:21:42Z <p>To resize the lash SWF once it has been written to the browser HTML, yes you will have to use Javascript. </p> <p><a href="http://www.mustardlab.com/developer/flash/objectresize/" rel="nofollow">This technique is a bit old, but it should work for you.</a> I'll also see if I can update it a bit and post a newer version. </p> http://stackoverflow.com/questions/1274950/prevent-webpage-from-scrolling-when-scrolling-inside-a-flash-object/1278415#1278415 1 Answer by 81bronco for Prevent webpage from scrolling when scrolling inside a Flash object 81bronco 2009-08-14T15:07:07Z 2009-08-14T15:07:07Z <p>I don not think this is possible without JavaScript. </p> <p>You would need to communicate from the Flash movie to the browser using <a href="http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs%5FParts&amp;file=00002200.html" rel="nofollow">ExternalInterface</a> whenever the Flash movie changes focus. </p> <p>Then, have a JavaScript function on the page trap and eat the mousewheel event:</p> <pre><code>if (window.addEventListener) /** DOMMouseScroll is for mozilla. */ window.addEventListener('DOMMouseScroll', handleWheelEvent, false); /** IE/Opera. */ window.onmousewheel = document.onmousewheel = handleWheelEvent; function handleWheelEvent(e){ e.preventDefault(); } </code></pre> http://stackoverflow.com/questions/1266875/seo-in-blueprint-css-framework/1278357#1278357 1 Answer by 81bronco for SEO in Blueprint CSS Framework 81bronco 2009-08-14T14:56:23Z 2009-08-14T14:56:23Z <p>I don't think this is possible using a grid framework as most of these rely on the relative locations of the individual source &lt;div&gt;s to achieve the grid.</p> http://stackoverflow.com/questions/1261909/are-there-any-issues-with-using-niceforms/1278316#1278316 0 Answer by 81bronco for Are there any issues with using Niceforms? 81bronco 2009-08-14T14:49:32Z 2009-08-14T14:49:32Z <p>The only issue in my opinion with any of these types of techniques is if the form relies upon the technique to function.</p> <p>From looking at <a href="http://www.emblematiq.com/lab/niceforms/demo/v20/niceforms.html" rel="nofollow">their demo page</a>:</p> <ul> <li>With JavaScript disabled, the form still looks pretty much the same except for the nice styling for the actual form elements. The form still functions.</li> <li>With CSS and JavaScript disabled, the form is still usable and functions.</li> </ul> <p>One potential issue I can see with them is if you have to support IE6 with the full styling. Of course - if you have that requirement, you have more problems than just this.</p> http://stackoverflow.com/questions/1277789/rounded-corner-box-using-css-with-nifty-not-working-help-me/1278064#1278064 0 Answer by 81bronco for Rounded Corner box using CSS with Nifty not Working, help me 81bronco 2009-08-14T14:08:01Z 2009-08-14T14:29:08Z <ol> <li>Your &lt;div class="indian"&gt; is not closed. This is probably keeping the Javascript from finding the &lt;div&gt; in the DOM.</li> <li>You need to set the "media" for your print stylesheet. The print stylesheet hides all of the work that the Nifty JS does.</li> <li>You are not setting background colors for the page or the "indian" &lt;div&gt;. Without doing this, the effect will not work correctly.</li> <li>I don't think that setting the height of the "indian" &lt;div&gt; is supported when using the Nifty technique.</li> </ol> <p>Correcting these errors, your code works as seen here: <a href="http://demo.raleighbuckner.com/so/1277789/" rel="nofollow">http://demo.raleighbuckner.com/so/1277789/</a></p> <p>Also, you should probably use the newer version of the Nifty technique found here: <a href="http://www.html.it/articoli/niftycube/index.html" rel="nofollow">http://www.html.it/articoli/niftycube/index.html</a></p> http://stackoverflow.com/questions/1277644/how-to-center-a-div-wrapped-with-panel-in-asp-net/1277950#1277950 1 Answer by 81bronco for How to center a div wrapped with panel in asp.net? 81bronco 2009-08-14T13:47:57Z 2009-08-14T13:47:57Z <p>I'm guessing that in Firefox, the HTML creatd by the &lt;asp:Panel&gt; is not set to 100% width. Try inspecting it with <a href="http://getfirebug.com/" rel="nofollow">FireBug</a> and see.</p> <p>If this is the case, there are two solutions:</p> <ul> <li>Use CSS to set the width of the Panel to 100%. Along with the CSS you already have, this will allow the &lt;div&gt; to center within it.</li> <li>Move the CSS you have now (margin:0 auto; width:1000px;) to control the Panel itself. As the panel looks to be outside the flow of the page, it will center itself within the viewport horizontally.</li> </ul> http://stackoverflow.com/questions/1211552/swf-file-unable-to-access-resource-folder-from-within-asp-net/1273040#1273040 0 Answer by 81bronco for SWF file unable to access resource folder from within ASP. net 81bronco 2009-08-13T16:19:04Z 2009-08-13T16:19:04Z <p>If the resources folder is in one of the "protected" ASP.Net folders (all the "App_*" folders), then they can only be accessed via the back-end ASP.Net code.</p> <p>Another possibility is that the SWF and the .aspx page are located in different folders on the server - which can complicate where Flash tries to load external assets from.</p> <p>I always solve this by setting the "base" parameter in my Flash inclusion code. From the <a href="http://kb2.adobe.com/cps/127/tn%5F12701.html" rel="nofollow">Adobe Docs</a>: </p> <blockquote> <p>base - . or [base directory] or [URL]. Specifies the base directory or URL used to resolve all relative path statements in the Flash Player movie. This attribute is helpful when your Flash Player movies are kept in a different directory from your other files.</p> </blockquote> <p>With SWFObject, this can be done like so:</p> <pre><code>var params = {base:'/path/'}; var flashvars = {}; var attributes = {}; swfobject.embedSWF('flashFile.swf', 'id', 250, 250, '9.0.0', false, flashvars, params, attributes); </code></pre> http://stackoverflow.com/questions/1224228/firefox-hide-embeded-object-bug-workaround/1272954#1272954 1 Answer by 81bronco for Firefox hide embeded object bug workaround? 81bronco 2009-08-13T16:07:28Z 2009-08-13T16:07:28Z <p>Have you tried positioning the Flash off the page instead of hiding it?</p> <pre><code>.hideme{ left: -3000px; } </code></pre> http://stackoverflow.com/questions/287679/an-easy-way-to-set-the-active-tab-using-controllers-and-a-usercontrol-in-asp-net/1254900#1254900 0 Answer by 81bronco for An easy way to set the active tab using controllers and a usercontrol in ASP.NET MVC? 81bronco 2009-08-10T13:30:59Z 2009-08-10T13:30:59Z <p>One method I am using on a current project - this also helps for other page-specific CSS needs.</p> <p>First, an HTML helper that returns a string that represents the current controller and action:</p> <pre><code>public static string BodyClass(RouteData data) { return string.Format("{0}-{1}", data.Values["Controller"], data.Values["Action"]).ToLower(); } </code></pre> <p>Then, add a call to this helper in your master page:</p> <pre><code>&lt;body class="&lt;%=AppHelper.BodyClass(ViewContext.RouteData) %&gt;"&gt; ... &lt;/body&gt; </code></pre> <p>Now, you can target specific pages with your CSS. To answer your exact question about navigation:</p> <pre><code>#primaryNavigation a { ... } .home-index #primaryNavigation a#home { ... } .home-about #primaryNavigation a#about { ... } .home-contact #primaryNavigation a#contact { ... } /* etc. */ </code></pre> http://stackoverflow.com/questions/222139/how-far-should-you-break-up-stylesheets/222840#222840 1 Answer by 81bronco for How far should you break up stylesheets? 81bronco 2008-10-21T18:04:40Z 2009-08-10T13:16:22Z <p>I break mine up almost exactly the same way: </p> <ul> <li>reset.ccs - The standard reset from <a href="http://meyerweb.com/eric/tools/css/reset/" rel="nofollow">MeyerWeb</a></li> <li>typography.css - Fonts, sizes, line-heights, etc </li> <li>layout.css - All positioning, floats, alignments, etc.</li> <li>colors.css (or more appropriately skin.css) - All colors, background images, etc.</li> </ul> <p>These are then followed with IE-specific files included via conditional comments for the appropriate version.</p> <p>I haven't had the need to separate them further, though I do organize each file in separate sections (base elements, named elements, classes, etc.)</p> <p>UPDATE: I have changed my system a bit in the last few projects I have done. </p> <ul> <li>base.css - Contains the CSS from the <a href="http://developer.yahoo.com/yui/reset/" rel="nofollow">YUI reset</a> and <a href="http://developer.yahoo.com/yui/base/" rel="nofollow">YUI base</a> CSS files (with attribution)</li> <li>main.css - Contains @import statements for the following: <ul> <li>typography.css - Fonts, sizes, line-heights, etc </li> <li>layout.css - All positioning, floats, alignments, etc.</li> <li>theme.css - All colors, background images, etc.</li> </ul></li> <li>print.css - Overrides for the other CSS files to make the pages print-friendly.</li> </ul> <p>I also then use conditional comments to add any IE-specific CSS files if needed. </p> <p>My next step in improving this would be to add a build-process step to combine all of the CSS files into one file to reduce the HTTP requests on the server. </p> http://stackoverflow.com/questions/1369425/image-map-w-image-based-rollovers-bounded-by-area-coordinates-jquery-if-possible Comment by 81bronco on Image Map w/Image-Based Rollovers Bounded by AREA Coordinates, jQuery if Possible 81bronco 2009-09-02T21:53:13Z 2009-09-02T21:53:13Z I can't get the jQuery plugin page to load. Hopefully, what I put in my answer is close to what you are looking for. http://stackoverflow.com/questions/1369556/why-cant-i-clearleft-these-labels-in-ie7/1369795#1369795 Comment by 81bronco on Why can't I clear:left these labels in IE7? 81bronco 2009-09-02T21:07:00Z 2009-09-02T21:07:00Z Yes. It's a bit of a hack to make the items take up the available space. I would recommend the unordered list or div method to be the most stable. http://stackoverflow.com/questions/1369556/why-cant-i-clearleft-these-labels-in-ie7/1369795#1369795 Comment by 81bronco on Why can't I clear:left these labels in IE7? 81bronco 2009-09-02T20:20:43Z 2009-09-02T20:20:43Z ahh... gotcha. let me see what I can come up with. http://stackoverflow.com/questions/675421/what-are-the-differences-between-implementing-swfaddress-2-2-from-swfaddress-2-1 Comment by 81bronco on What are the differences between implementing SWFAddress 2.2 from SWFAddress 2.1 with Actionscript3? 81bronco 2009-08-27T04:36:05Z 2009-08-27T04:36:05Z Can you post a link to somewhere that it is not working for you? http://stackoverflow.com/questions/1289442/using-multiple-swf-object-flash-doesnt-focus-on-rollover Comment by 81bronco on Using multiple SWF Object - Flash doesn't focus on rollover 81bronco 2009-08-27T04:28:01Z 2009-08-27T04:28:01Z Can you post a link to an example? http://stackoverflow.com/questions/244276/loading-an-xml-file-from-outside-the-swf-file-in-flash/1186561#1186561 Comment by 81bronco on Loading an xml file from outside the swf file in Flash 81bronco 2009-08-12T16:51:30Z 2009-08-12T16:51:30Z I second the comment by @shawnr - no need to add another complexity into the situation. Flash is perfectly capable of handling XML on its own. http://stackoverflow.com/questions/467859/how-can-i-find-the-path-to-a-folder-from-a-controller-constructor-in-asp-net-mvc/468428#468428 Comment by 81bronco on How Can I Find The Path To A Folder from a Controller Constructor in ASP.NET MVC? 81bronco 2009-01-22T15:28:52Z 2009-01-22T15:28:52Z That's a good idea. I might end up going this route later. Thanks! http://stackoverflow.com/questions/207335/how-can-i-make-part-of-a-joomla-template-editable-via-the-cms-interface/207413#207413 Comment by 81bronco on How can I make part of a Joomla template editable via the CMS interface? 81bronco 2008-10-16T13:21:12Z 2008-10-16T13:21:12Z Do you really trust clients to go in and edit the HTML that is the framework for the whole site? http://stackoverflow.com/questions/9051/what-is-best-blogging-host-for-programmers-code-formatting Comment by 81bronco on What is best blogging host for programmers/code formatting? 81bronco 2008-09-20T03:25:45Z 2008-09-20T03:25:45Z Nice new blog - you've been busy. I'll admit, several of your posts went right over my head, but it's definitely providing me with some motivation. http://stackoverflow.com/questions/106887/know-any-great-blogging-tools-for-programming-blogs/106894#106894 Comment by 81bronco on Know Any Great Blogging Tools for Programming Blogs? 81bronco 2008-09-20T03:20:10Z 2008-09-20T03:20:10Z I agree - that looks waaaay too complicated. THere has to be a simpler way, right? http://stackoverflow.com/questions/45078/flex-and-net-whats-a-good-way-to-get-data-into-flex-weborb-web-services/67865#67865 Comment by 81bronco on Flex and .NET - What's a good way to get data into Flex, WebORB? Web Services? 81bronco 2008-09-18T01:28:23Z 2008-09-18T01:28:23Z Good info on WebOrb. I'l have to try it out next time. http://stackoverflow.com/questions/3553/one-piece-of-advice/13027#13027 Comment by 81bronco on One piece of advice 81bronco 2008-09-16T20:18:36Z 2008-09-16T20:18:36Z very good answer. make it a habit early on and it'll become second nature.