User 81bronco - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T23:19:00Zhttp://stackoverflow.com/feeds/user/1153http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1397141/asp-net-mvc-keeping-the-controller-and-view-separate-by-using-strongly-typed-ob/1397169#13971692Answer by 81bronco for [ASP.NET MVC] Keeping the controller and view separate by using strongly-typed objects81bronco2009-09-09T01:37:34Z2009-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#13698201Answer by 81bronco for Image Map w/Image-Based Rollovers Bounded by AREA Coordinates, jQuery if Possible81bronco2009-09-02T20:02:09Z2009-09-02T21:51:07Z<p>I don't think you can do this with a true image map:</p>
<pre><code><img usemap="#map" />
<map name="map">
<area coords="foo,bar">
<area coords="foo,bar">
<area coords="foo,bar">
</map>
</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><style>
#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; }
</style>
<ul id="fakeMap">
<li id="maplink1"><a href="link1.htm">Link 1 Text</a></li>
<li id="maplink2"><a href="link2.htm">Link 2 Text</a></li>
<li id="maplink3"><a href="link3.htm">Link 3 Text</a></li>
</ul>
</code></pre>
http://stackoverflow.com/questions/1369556/why-cant-i-clearleft-these-labels-in-ie7/1369795#13697951Answer by 81bronco for Why can't I clear:left these labels in IE7?81bronco2009-09-02T19:56:20Z2009-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 <label> 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#13540900Answer by 81bronco for blueprint css pre inside div not displaying as expected81bronco2009-08-30T15:19:57Z2009-08-30T15:19:57Z<p>The reason your <div>s are wrapping has nothing to do with the <pre> tag. </p>
<p>Each of the <div>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 <div> (950px).</p>
<p>The solution here is to use the "last" class (provided by the Blueprint CSS framework) to the last <div>:</p>
<pre><code><div class="span-12" style="background:#eee;"><pre>Hello world asdf asdf asdf asd fas df asd fas dfas dfasd f</pre></div>
<div class="span-12 last" style="background:#ccc;"><pre>Hello world asdf asdf asdf asd fas df asd fas dfas dfasd f</pre></div>
</code></pre>
<p>This class removes the right margin and allows the <div>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#13523433Answer by 81bronco for DRY out my CSS, but want to keep the basic CSS syntax. 81bronco2009-08-29T20:52:07Z2009-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#13516821Answer by 81bronco for Does the content property exist in html81bronco2009-08-29T15:17:27Z2009-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 (<span> in this case).</p>
<p>If you must have the extra markup, be sure to encode it:</p>
<pre><code>title="&gt;span&lt;Image Title&lt;/span&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#13514304Answer by 81bronco for Email and css OR tables81bronco2009-08-29T13:22:45Z2009-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 <table>, image slices, and even the dreaded <font>. </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 <style> 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#13503040Answer by 81bronco for can jquery manipulate the global css definition of the document?81bronco2009-08-29T02:55:40Z2009-08-29T02:55:40Z<p>I would probably handle this by having your checkbox add and remove a class form the <body> 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 <div> 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#13499210Answer by 81bronco for How can I disable session state in ASP.NET MVC?81bronco2009-08-28T23:44:29Z2009-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-1Answer by 81bronco for iframe can't show image when browsed with "file" protocol in IE81bronco2009-08-28T20:49:36Z2009-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#13492383Answer by 81bronco for Are there hosted jQuery UI themes anywhere?81bronco2009-08-28T20:41:23Z2009-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#13491720Answer by 81bronco for keeping higher menus highlighted in suckerfish vertical81bronco2009-08-28T20:29:12Z2009-08-28T20:29:12Z<p>You need to move the color styles from the <a> tag to the <li> 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 <a> 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 <li> tag and not of the <a> tag. So, when you mose over the sub-list, you are no longer hovering over the <a> and the color is not longer applicable.</p>
<p>Moving the coloring style up to the <li> allows the hover to still be valid.</p>
http://stackoverflow.com/questions/1270978/safari-flash-wmode-not-working-anything-wrong-with-this-embed/1272599#12725991Answer by 81bronco for Safari flash wmode not working - anything wrong with this embed?81bronco2009-08-13T15:12:15Z2009-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 <div> and the content in a separate <div>. 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#13388420Answer by 81bronco for SwfAddress conflict with SwfObject's 'callback' argument81bronco2009-08-27T04:25:53Z2009-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]; // <-- 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#13385961Answer by 81bronco for Jquery easeOutBounce direction?81bronco2009-08-27T02:43:50Z2009-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#13375101Answer by 81bronco for How can I remove zoom icon in opera mobile81bronco2009-08-26T21:09:37Z2009-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><meta name="viewport" content="width=320" />
</code></pre>
<p>To keep your page from scaling, I would set the tag to be as follows:</p>
<pre><code><meta name="viewport" content="width=device-width,height=device-height,user-scalable=no" />
</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><meta name = "viewport" content = "width = device-width, height = device-height" /></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#13082420Answer by 81bronco for CSS link Spacing and Paragraph Spacing81bronco2009-08-20T19:10:47Z2009-08-20T19:10:47Z<p>You should be able to do this with each line being a <p>, but you will have to add an extra <br> at the end of each one:</p>
<p>HTML:</p>
<pre><code><h3>Nature Orange</h3>
<p>hey hows it going<br /></p>
<p>this one is<br /></p>
<p>short and this one is longer<br /></p>
<p>will this text<br /></p>
<p>do what I<br /></p>
<p>Want?</p>
</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#13080560Answer by 81bronco for sIFR in main menu81bronco2009-08-20T18:39:05Z2009-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#13080261Answer by 81bronco for Centering Text in IE 7 / Conditional CSS81bronco2009-08-20T18:33:05Z2009-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 (&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 <div> tag in each cell (with a class of "sidebar") is placed after the ending <td> and <tr>.</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><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://demo.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Latest Jobs</title>
<link href="http://www.talentforceinc.com/talentforce.css" rel="stylesheet" type="text/css" />
<!--[if LTE IE 7]>
<link href="http://www.talentforceinc.com/talentforce_IE.css" rel="stylesheet" type="text/css" />
<![endif]-->
<style type="text/css">
<!--
td {
text-align: center;
align: center;
}
-->
</style>
<script type="text/javascript">
<!--
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");
}
//-->
</script>
</head>
<body>
<table width=185px bgcolor=white border=0 cellpadding=0 cellspacing=0 style='text-align:center'><tr><td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#00AADD'><div class='sidebar'><div align='center'><a style='text-align:center' href='#' onclick='javascript:ShowMore(&quot;P0006008-0032&quot;);'>Contractor&nbsp;Engineer&nbsp;Specialist</a></div></td></tr></div><tr><td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#AADDEE'><div class='sidebar'><div align='center'><a style='text-align:center' href='#' onclick='javascript:ShowMore(&quot;N0003008-0077&quot;);'>.Net&nbsp;&&nbsp;Sql&nbsp;server&nbsp;An</a></div></td></tr></div><tr><td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#FFCC55'><div class='sidebar'><div align='center'><a style='text-align:center' href='#' onclick='javascript:ShowMore(&quot;S5696007-0004&quot;);'>Cementing&nbsp;Service&nbsp;Sup/Deep&nbs</a></div></td></tr></div><tr><td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#22AA55'><div class='sidebar'><div align='center'><a style='text-align:center' href='#' onclick='javascript:ShowMore(&quot;S4082007-0012&quot;);'>Coil&nbsp;Tubing&nbsp;Operator/Equipment</a></div></td></tr></div><tr><td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#9999AA'><div class='sidebar'><div align='center'><a style='text-align:center' href='#' onclick='javascript:ShowMore(&quot;L0008004-0157&quot;);'>Loads&nbsp;Analysis </a></div></td></tr></div><tr><td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#EE9922'><div class='sidebar'><div align='center'><a style='text-align:center' href='#' onclick='javascript:ShowMore(&quot;D6452009-0448&quot;);'>Document&nbsp;Layout&nbsp;Specialist&nbs</a></div></td></tr></div><tr><td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#CCCCCC'><div class='sidebar'><div align='center'><a style='text-align:center' href='#' onclick='javascript:ShowMore(&quot;L0008004-0161&quot;);'>Technical&nbsp;Trainer&nbsp;</a></div></td></tr></div><tr><td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#00AAAA'><div class='sidebar'><div align='center'><a style='text-align:center' href='#' onclick='javascript:ShowMore(&quot;A0029005-0025&quot;);'>Q.A.&nbsp;Engineer </a></div></td></tr></div><tr><td height=40 width=100px align=center style='text-align:center' valign=middle bgcolor='#888888'><div class='sidebar'><div align='center'><a style='text-align:center' href='#' onclick='javascript:ShowMore(&quot;E0001008-0090&quot;);'>Clerk&nbsp;&nbsp;Secret&nbsp;Clearance</a></div></td></tr></div></table>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1302055/floating-labels-and-divs-on-a-form/1302571#13025710Answer by 81bronco for Floating Labels and Divs on a form81bronco2009-08-19T20:50:57Z2009-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#12937871Answer by 81bronco for Flash 8 Actionscript - Stage.height81bronco2009-08-18T13:21:42Z2009-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#12784151Answer by 81bronco for Prevent webpage from scrolling when scrolling inside a Flash object81bronco2009-08-14T15:07:07Z2009-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&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#12783571Answer by 81bronco for SEO in Blueprint CSS Framework81bronco2009-08-14T14:56:23Z2009-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 <div>s to achieve the grid.</p>
http://stackoverflow.com/questions/1261909/are-there-any-issues-with-using-niceforms/1278316#12783160Answer by 81bronco for Are there any issues with using Niceforms?81bronco2009-08-14T14:49:32Z2009-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#12780640Answer by 81bronco for Rounded Corner box using CSS with Nifty not Working, help me81bronco2009-08-14T14:08:01Z2009-08-14T14:29:08Z<ol>
<li>Your <div class="indian"> is not closed. This is probably keeping the Javascript from finding the <div> 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" <div>. Without doing this, the effect will not work correctly.</li>
<li>I don't think that setting the height of the "indian" <div> 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#12779501Answer by 81bronco for How to center a div wrapped with panel in asp.net?81bronco2009-08-14T13:47:57Z2009-08-14T13:47:57Z<p>I'm guessing that in Firefox, the HTML creatd by the <asp:Panel> 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 <div> 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#12730400Answer by 81bronco for SWF file unable to access resource folder from within ASP. net81bronco2009-08-13T16:19:04Z2009-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#12729541Answer by 81bronco for Firefox hide embeded object bug workaround?81bronco2009-08-13T16:07:28Z2009-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#12549000Answer by 81bronco for An easy way to set the active tab using controllers and a usercontrol in ASP.NET MVC?81bronco2009-08-10T13:30:59Z2009-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><body class="<%=AppHelper.BodyClass(ViewContext.RouteData) %>">
...
</body>
</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#2228401Answer by 81bronco for How far should you break up stylesheets?81bronco2008-10-21T18:04:40Z2009-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-possibleComment by 81bronco on Image Map w/Image-Based Rollovers Bounded by AREA Coordinates, jQuery if Possible81bronco2009-09-02T21:53:13Z2009-09-02T21:53:13ZI 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#1369795Comment by 81bronco on Why can't I clear:left these labels in IE7?81bronco2009-09-02T21:07:00Z2009-09-02T21:07:00ZYes. 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#1369795Comment by 81bronco on Why can't I clear:left these labels in IE7?81bronco2009-09-02T20:20:43Z2009-09-02T20:20:43Zahh... 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-1Comment by 81bronco on What are the differences between implementing SWFAddress 2.2 from SWFAddress 2.1 with Actionscript3?81bronco2009-08-27T04:36:05Z2009-08-27T04:36:05ZCan 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-rolloverComment by 81bronco on Using multiple SWF Object - Flash doesn't focus on rollover81bronco2009-08-27T04:28:01Z2009-08-27T04:28:01ZCan you post a link to an example?http://stackoverflow.com/questions/244276/loading-an-xml-file-from-outside-the-swf-file-in-flash/1186561#1186561Comment by 81bronco on Loading an xml file from outside the swf file in Flash81bronco2009-08-12T16:51:30Z2009-08-12T16:51:30ZI 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#468428Comment by 81bronco on How Can I Find The Path To A Folder from a Controller Constructor in ASP.NET MVC?81bronco2009-01-22T15:28:52Z2009-01-22T15:28:52ZThat'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#207413Comment by 81bronco on How can I make part of a Joomla template editable via the CMS interface?81bronco2008-10-16T13:21:12Z2008-10-16T13:21:12ZDo 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-formattingComment by 81bronco on What is best blogging host for programmers/code formatting? 81bronco2008-09-20T03:25:45Z2008-09-20T03:25:45ZNice 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#106894Comment by 81bronco on Know Any Great Blogging Tools for Programming Blogs?81bronco2008-09-20T03:20:10Z2008-09-20T03:20:10ZI 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#67865Comment by 81bronco on Flex and .NET - What's a good way to get data into Flex, WebORB? Web Services?81bronco2008-09-18T01:28:23Z2008-09-18T01:28:23ZGood info on WebOrb. I'l have to try it out next time.http://stackoverflow.com/questions/3553/one-piece-of-advice/13027#13027Comment by 81bronco on One piece of advice81bronco2008-09-16T20:18:36Z2008-09-16T20:18:36Zvery good answer. make it a habit early on and it'll become second nature.