User Steve Perks - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T11:44:40Z http://stackoverflow.com/feeds/user/16124 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1676725/how-would-i-stagger-text-around-an-uneven-background-image 2 How would I stagger text around an uneven background image? Steve Perks 2009-11-04T21:26:18Z 2009-11-20T17:00:10Z <p>Often as a Web Producer I get a lovely mock-up with text wrapping around an obvious background image. The content is going to come from a backend CMS and I don't want the editorial staff to worry about inserting <code>&lt;br /&gt;</code> tags etc.</p> <pre><code>Lorem ipsum dolor sit amet, consectetuer adiping elit, xxxxxxxxxxxxxx sed diam nonummy nibh euismod tincidunt ut lao xxxxxxxxxxxxxxxxxx dolore magna aliquam erat volutpat. Ut wisi xxxxxxxxxxxxxxxxxxxxxxxxx enim ad minim veniam, quis nostrud exerci xxxxxxxxxxxxxxxxxxxxxxxxxxx tation ullamcorper suscipit lobortis xxxxxxxxxxxxxxxxxxxxxxxxxxxxx ut aliquip ex ea commodo consequat. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Duis autem vel eum iriure dolor in xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx hendrerit in vulputate velit esse xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx molestie consequat, vel illum xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx </code></pre> <p>Does anyone know of a solution to make this kind of thing automated via script, css?</p> http://stackoverflow.com/questions/1725409/how-does-one-identify-an-empty-element-using-jquery-that-might-contain-a-comment 0 How does one identify an empty element using jQuery that might contain a comment tag? Steve Perks 2009-11-12T21:06:53Z 2009-11-13T07:31:57Z <p>I'm trying to identify an empty element that might or might not contain a comment tag and/or white space.</p> <p>The following HTML structure is common place in the environment I'm working with:</p> <pre><code>&lt;div class="container container-no-title"&gt; &lt;div id="dnn_ctr6735_ContentPane" class="container-padding DNNAlignright"&gt; &lt;!-- Start_Module_6735 --&gt; &lt;div id="dnn_ctr6735_ModuleContent"&gt; &lt;!-- End_Module_6735 --&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>My initial jQuery was:</p> <pre><code>$('.container-padding &gt; div').each(function() { if ($(this).is(":empty")) { $(this).parent('.container-padding').remove(); }; }); </code></pre> <p>But this doesn't account for whitespace or comment tags. I found other questions that addressed whitespace, but nothing that addresses comment tags, and I'd really like to keep this little snippet of jQuery simple.</p> <p>Cheers, Steve</p> http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/86162#86162 7 Answer by Steve Perks for What is the easiest or fastest way to make CSS render the same in all browsers Steve Perks 2008-09-17T18:29:50Z 2009-11-11T14:26:38Z <p>Organize your work flow in the following way and it'll reduce a lot of time wasting.</p> <ol> <li>Make sure you <strong>declare a doc-type</strong>.</li> <li>Use one of the reset methods others have mentioned here.</li> <li>Work on your structure</li> <li>Avoid using width <strong>and</strong> padding on the same element where you can.</li> <li>Always think of reducing unneeded HTML and css rather than adding all the time.</li> <li>Try not to use margin left and right when floating elements.</li> </ol> <p>If you stick to those items, a lot of the most common issues will not appear.</p> <p>PS One item I forgot to mention was make use of the validators over at W3.</p> http://stackoverflow.com/questions/374791/is-there-an-argument-to-know-youre-on-a-views-list-page 1 is there an argument to know you're on a views list page? Steve Perks 2008-12-17T14:56:09Z 2009-10-17T08:12:58Z <p>I've had to move my page title into my node to accommodate a client need, but I'm unable to now get a title to display on a page view of my views list. The argument I have to display title on edit, admin and track pages is:</p> <pre><code>&lt;?php if ($title &amp;&amp; ((arg(2) == 'track') || (arg(2) == 'edit') || (arg(0) == 'admin'))): ?&gt; &lt;h1 class="title"&gt;&lt;?php echo $title; ?&gt;&lt;/h1&gt; &lt;?php endif; ?&gt; </code></pre> <p>and I'm wondering if there's a generic argument to include either all views list pages, or, the inverse, just exclude all node pages (NB: I'm using CCK, so have a lot of content types)?</p> <p><hr /></p> <p>Sniffing out other possibilities...</p> <p>I know that I can create different page templates for my content-types, but can I create one different page template for ALL my CCK content-types?</p> <p>Here's the code I'd through into template.php to get the ability to add individual content-type templates:</p> <pre><code>function _phptemplate_variables($hook, $vars) { switch ($hook) { case 'page': if ($vars['node'] &amp;&amp; arg(2) != 'edit') { $vars['template_files'][] = 'page-'. $vars['node']-&gt;type; } break; } return $vars; } </code></pre> <p>Cheers<br /> Steve</p> http://stackoverflow.com/questions/775045/is-it-worth-the-effort-to-try-and-override-the-default-classes-in-dnn 2 is it worth the effort to try and override the default classes in DNN Steve Perks 2009-04-21T23:04:58Z 2009-10-08T13:00:01Z <p>DotNetNuke uses quite a few preset classes like .Normal, .Head, .SubHead, etc. in spans inside other classless spans etc. that I find really annoying and rather than figuring out how to work with them I'm considering overriding them by having them all inherit their styles from their parent, but I'm curious if others have already given this a try and have stories to tell of success or fallen foul of something on the module / admin end that makes this a fruitless task?</p> <p>Thanks, Steve</p> http://stackoverflow.com/questions/351547/can-you-call-one-drupal-views-template-for-multiple-views 0 Can you call one Drupal views template for multiple views? Steve Perks 2008-12-09T01:43:06Z 2009-08-28T19:35:10Z <p>I've used the Views Theming Wizard to output a template and it gave me the following chunk of code to go in template.php.</p> <p>I'd prefer to just maintain the one template, so all my functions will be calling the same one, and rather than writing numerous versions of the same function, I'm wondering if there's a way to string function names together? Something like:</p> <pre><code>function phptemplate_views_view_list_recent_articles($view, $nodes, $type), phptemplate_views_view_list_popular_articles($view, $nodes, $type) { $fields = _views_get_fields(); $taken = array(); // Set up the fields in nicely named chunks. foreach ($view-&gt;field as $id =&gt; $field) { $field_name = $field['field']; if (isset($taken[$field_name])) { $field_name = $field['queryname']; } $taken[$field_name] = true; $field_names[$id] = $field_name; } // Set up some variables that won't change. $base_vars = array( 'view' =&gt; $view, 'view_type' =&gt; $type, ); foreach ($nodes as $i =&gt; $node) { $vars = $base_vars; $vars['node'] = $node; $vars['count'] = $i; $vars['stripe'] = $i % 2 ? 'even' : 'odd'; foreach ($view-&gt;field as $id =&gt; $field) { $name = $field_names[$id]; $vars[$name] = views_theme_field('views_handle_field', $field['queryname'], $fields, $field, $node, $view); if (isset($field['label'])) { $vars[$name . '_label'] = $field['label']; } } $items[] = _phptemplate_callback('views-list-first-with-abstract', $vars); } if ($items) { return theme('item_list', $items); } } </code></pre> <p>Thanks,<br /> Steve</p> http://stackoverflow.com/questions/302398/how-to-change-the-html-of-the-drupal-5s-views-module 1 How to change the HTML of the drupal 5's views module Steve Perks 2008-11-19T16:04:40Z 2009-08-28T19:30:58Z <p>I'm using Drupal 5 and have a multitude of views that I want to alter the output of. Using the views wizard, I can create a different template for each instance, but I'm wanting to do the same changes across all my views and having 30 files in the themes directory seams like a hell of a lot of maintenance and code. Does anyone know if there's a default way of addressing all the views at the same time and then using what I currently have for one offs?</p> <p>Here's what I have now:</p> <p>views-list-home_______articles_______latest.tpl.php</p> <pre><code>&lt;?php /** * views template to output one 'row' of a view. * This code was generated by the views theming wizard * Date: November 17, 2008 - 2:07pm * View: home_articles_latest * * Variables available: * $view -- the entire view object. Important parts of this object are * home_articles_latest, . * $view_type -- The type of the view. Probably 'page' or 'block' but could * also be 'embed' or other string passed in from a custom view creator. * $node -- the raw data. This is not a real node object, but will contain * the nid as well as other support fields that might be necessary. * $count -- the current row in the view (not TOTAL but for this page) starting * from 0. * $stripe -- 'odd' or 'even', alternating. * $title -- Display the title of the node. * $title_label -- The assigned label for $title * $comment_count -- This will display the comment count. * $comment_count_label -- The assigned label for $comment_count * $field_abstract_value -- * $field_abstract_value_label -- The assigned label for $field_abstract_value * * This function goes in your views-list-home_articles_latest.tpl.php file */ //now we add the stylesheet... //drupal_add_css(path_to_theme() .'/views-list-home_articles_latest.css'); ?&gt; &lt;?php print $view ?&gt; &lt;div class="view-label view-field-title"&gt; &lt;?php print $title_label ?&gt; &lt;/div&gt; &lt;div class="view-field view-data-title"&gt; &lt;?php print $title?&gt; &lt;/div&gt; &lt;?php if ($comment_count != '0' &amp;&amp; $view_type == 'block'): ?&gt; &lt;div class="view-label view-field-comment-count"&gt; &lt;?php print $comment_count_label ?&gt; &lt;/div&gt; &lt;div class="view-field view-data-comment-count"&gt; &lt;?php print $add?&gt;&lt;?php print $comment_count?&gt; &lt;/div&gt; &lt;?php endif; ?&gt; &lt;?php if ($count == 0): ?&gt; &lt;div class="view-label view-field-field-abstract-value"&gt; &lt;?php print $field_abstract_value_label ?&gt; &lt;/div&gt; &lt;div class="view-field view-data-field-abstract-value"&gt; &lt;?php print $field_abstract_value?&gt; &lt;/div&gt; &lt;?php endif; ?&gt; </code></pre> <p>in template.php</p> <pre><code>/** * views template to output a view. * This code was generated by the views theming wizard * Date: November 17, 2008 - 2:07pm * View: home_articles_latest * * This function goes in your template.php file */ function phptemplate_views_view_list_home_articles_latest($view, $nodes, $type) { $fields = _views_get_fields(); $taken = array(); // Set up the fields in nicely named chunks. foreach ($view-&gt;field as $id =&gt; $field) { $field_name = $field['field']; if (isset($taken[$field_name])) { $field_name = $field['queryname']; } $taken[$field_name] = true; $field_names[$id] = $field_name; } // Set up some variables that won't change. $base_vars = array( 'view' =&gt; $view, 'view_type' =&gt; $type, ); foreach ($nodes as $i =&gt; $node) { $vars = $base_vars; $vars['node'] = $node; $vars['count'] = $i; $vars['stripe'] = $i % 2 ? 'even' : 'odd'; foreach ($view-&gt;field as $id =&gt; $field) { $name = $field_names[$id]; $vars[$name] = views_theme_field('views_handle_field', $field['queryname'], $fields, $field, $node, $view); if (isset($field['label'])) { $vars[$name . '_label'] = $field['label']; } } $items[] = _phptemplate_callback('views-list-home_articles_latest', $vars); } if ($items) { return theme('item_list', $items); } } </code></pre> <p>Thanks,<br /> Steve</p> http://stackoverflow.com/questions/376248/css-selector-style/376390#376390 -1 Answer by Steve Perks for CSS Selector Style Steve Perks 2008-12-17T23:07:08Z 2009-07-01T00:02:34Z <p>EDIT: This is pointing out that there could well be a performance issue. Some people seemed to think I was some sort on way out there rant...</p> <p><hr /></p> <p>While I don't know for certain, I'd like to give a word of warning! Consider the following identifier:</p> <pre><code>div#foo a.bar {} </code></pre> <p>I hear that jQuery for example, which utilizes css, would in the above example traverse the DOM looking for divs first, then check to see if they have an id of #foo, then for an A tag before finally seeing if it's classed .bar.</p> <p>My concern with the * is that the browser may traverse the DOM looking for ALL tags and then look for .bar, rather than inherently just looking for the attribute of 'bar' - that's two sweeps of the DOM rather than just the one. Might be an extremely minimal difference, but if your syntax hits the airwaves, that's a few more solar panels we need to install.</p> http://stackoverflow.com/questions/1066492/why-do-dev-tools-offer-quirks-mode 2 Why do dev tools offer Quirks mode? Steve Perks 2009-06-30T22:56:55Z 2009-06-30T23:38:03Z <p>I'm wondering if anyone has a rationale for why web development plugins for browsers offer buttons to display content in quirks mode?</p> <p>Are there people out there that markup for quirks mode on purpose? What's the point of seeing how a site will display in quirks mode when the markup already has a doc-type?</p> <p>Am I missing something here or is my suspicion right that there's been a bit of wasted time here by the, might I add, excellent lads and ladettes who put these tools together?</p> <p>Cheers, Steve</p> <p><hr /></p> <p>EDIT: I just want to make it clear that this is a serious question. I'm not wanting to be clever. I'm seriously concerned that I'm missing the point here on something.</p> http://stackoverflow.com/questions/1009024/how-much-weight-does-a-pseudo-class-have 0 How much weight does a pseudo class have? Steve Perks 2009-06-17T19:17:33Z 2009-06-18T02:30:57Z <p>I'm working in a DNN environment where the default style sheet which every site loads sets styles for pseudo-classes. I could edit the default style sheet, but since this is stock and comes with all upgrades, I'd prefer to leave it alone and override their styles at the skin level.</p> <p>Does anyone know of a solution to get all these pseudo classes to start listening to the standalone element again?</p> <pre><code>A:link { text-decoration: none; color: #003366; } A:visited { text-decoration: none; color: #003366; } A:hover { text-decoration: underline; color: #ff0000; } A:active { text-decoration: none; color: #003366; } </code></pre> <p>Also, would <code>a:hover {}</code> always beat out <code>selector a {}</code> no matter how strong <code>selector</code> is?</p> <p><hr /></p> <p>EDIT: I'm not wanting to use !important as I'll have to use important everywhere, and I don't want to embed any style to the document.</p> <p>My presumption is that a:link{text-decoration:none;} will only ever be overridden with the same pseudo class and my hope is that there's a way around having to always define pseudo classes to every a tag.</p> http://stackoverflow.com/questions/1009094/css-can-i-select-every-type-of-element-that-are-not-within-a-specific-class/1009324#1009324 0 Answer by Steve Perks for CSS: Can I select every type of element that are not within a specific class? Steve Perks 2009-06-17T20:20:12Z 2009-06-17T20:20:12Z <p>You can't do what you're asking with css. The whole idea around css is the cascade, and what you're wanting to do is work against the flow of the cascade.</p> <p>Work with the tide do regular css:</p> <pre><code>h1 {style definitions} .wrapper h1 {style definitions} </code></pre> http://stackoverflow.com/questions/375763/whats-the-best-website-for-learning-html-semantically 4 What's the best website for learning HTML Semantically? Steve Perks 2008-12-17T19:40:12Z 2009-05-19T15:27:08Z <p>Where should I point someone to learn the basics of HTML/CSS? I personally got my start from <a href="http://htmlgoodies.com/" rel="nofollow">HTMLGoodies</a> way back in the day, but while I thank Ken Burns for getting me going, I'm loathed to send someone out to that site nowadays as I think it's dated. </p> <p>Obviously there are many sites out there that cumulatively contain all the information needed, but where to send someone new who you don't want to scare off?</p> <p><hr /></p> <p>edit:</p> <p>I honestly thought I'd been missing something by not having used <a href="http://w3schools.com/" rel="nofollow">w3schools.com</a>, but I see that within three pages of the tutorial (both html and xhtml) they use <code>&lt;b&gt;&lt;/b&gt;</code>. Damned shame they're not encouraging semantics.</p> <p>Anyone know something that gets people off on the right foot?</p> http://stackoverflow.com/questions/882304/css-displayblock-problem-whos-the-culprit-ie-or-firefox/882489#882489 1 Answer by Steve Perks for CSS display:block problem, whos the culprit IE or Firefox? Steve Perks 2009-05-19T12:36:08Z 2009-05-19T12:36:08Z <p>Your problem is in the HTML. You can't can't self close A tags</p> http://stackoverflow.com/questions/874591/float-div-that-fills-all-empty-space-of-box/874852#874852 2 Answer by Steve Perks for Float div that fills all empty space of box Steve Perks 2009-05-17T15:42:51Z 2009-05-17T15:42:51Z <p>Why use a div just to add a separate background arrow?</p> <pre><code>&lt;div class="selected with-arrow"&gt; &lt;div class="text"&gt;&lt;/div&gt; &lt;/div&gt; .with-arrow .text { background: url(dropdown_text.png); } .with-arrow { background: url(dropdown_arrow.png); padding-left:22px; } </code></pre> http://stackoverflow.com/questions/857561/display-definition-term-and-description-inline/857604#857604 0 Answer by Steve Perks for Display definition term and description inline Steve Perks 2009-05-13T12:10:55Z 2009-05-13T12:42:56Z <p>I don't have the time to really go through it, but his persons has found the solution, although it appears to utilize a lot of hacks</p> <p><a href="http://archivist.incutio.com/viewlist/css-discuss/75136" rel="nofollow">explanation of solution</a></p> <p><a href="http://www.cue-the-sun.com/ato/FDF%5Ftrials/fdf%5Ffbt%5Fview.html" rel="nofollow">page showing solution in action</a></p> http://stackoverflow.com/questions/841553/jquery-this-child-selector/841608#841608 0 Answer by Steve Perks for Jquery $(this) Child Selector Steve Perks 2009-05-08T20:17:28Z 2009-05-08T20:17:28Z <p>This is a lot simpler with <a href="http://docs.jquery.com/Effects/slideToggle" rel="nofollow">.slideToggle()</a>:</p> <pre><code>jQuery('.class1 a').click( function() { $(this).next('.class2').slideToggle(); }); </code></pre> <p>EDIT: made it .next instead of .siblings</p> <p><a href="http://www.mredesign.com/demos/jquery-effects-1/" rel="nofollow">http://www.mredesign.com/demos/jquery-effects-1/</a></p> <p>You can also add cookie's to remember where you're at...</p> <p><a href="http://c.hadcoleman.com/2008/09/jquery-slide-toggle-with-cookie/" rel="nofollow">http://c.hadcoleman.com/2008/09/jquery-slide-toggle-with-cookie/</a></p> http://stackoverflow.com/questions/836159/css-to-add-underline-after-header-content/837511#837511 0 Answer by Steve Perks for CSS To Add Underline After Header Content Steve Perks 2009-05-07T23:11:44Z 2009-05-07T23:11:44Z <p>Assuming that you're working with dynamic content, the best I could suggest is to accept graceful degradation and use a mix of great_llama and Bohdan Ganicky</p> <p>Imagine:</p> <pre><code>A long title that will wrap to two lines___________________ and leave you like this in great_llama's solution </code></pre> <p>and nothing appearing at all with Bohdan Ganicky's solution if ul isn't immediate preceded by ul.</p> <p>Solution:</p> <pre><code>.c h3 { display: inline; background-color: white; margin: 0; padding: 0; line-height: 1em; } .c + * { margin-top: -1px; border-top: 1px solid; padding-top: 1em; /* simulate margin with padding */ } </code></pre> <p>We care about IE6, but accept that this is an aesthetic touch and IE6 users will not suffer. If you can't get the designer to accept this AND you can't alter the HTML, then do something else (before you find another job <a href="http://xkcd.com/541/" rel="nofollow">;)</a>)</p> http://stackoverflow.com/questions/836415/how-to-force-css-borders-to-display-on-layered-page/837455#837455 1 Answer by Steve Perks for How to force css borders to display on layered page? Steve Perks 2009-05-07T22:46:59Z 2009-05-07T22:46:59Z <p>You can't layer an element without having positioning.</p> <pre><code>.graphBoxes { position: relative; z-index: 1; margin-top: -250px; } </code></pre> http://stackoverflow.com/questions/834579/how-can-i-make-a-background-clickable 0 How can I make a background clickable Steve Perks 2009-05-07T13:12:35Z 2009-05-07T15:31:53Z <p>I've been asked to make a sponsored background (site takeover) for one of our sites and the question arose of whether I can make the logos in the tiled background clickable.</p> <p>My initial thought was 'no', but the more I think about it, the more I think it'd be possible if I either used JavaScript to make the body element clickable, or fake the background image as a layer below the content and make that clickable.</p> <p>Has anyone done this before with success with one of these approaches or a different one?</p> <p>jQuery:</p> <pre><code>$('body').click() </code></pre> <p>HTML:</p> <pre><code>&lt;body&gt; &lt;div id="sponsors-div" style="position:fixed;z-index:0;"&gt;&lt;a style="display:block;height:100%" href="http://sponsors.url"&gt;&lt;/a&gt;&lt;/div&gt; &lt;div id="site-container" style="position:relative;z-index:1;"&gt;... </code></pre> http://stackoverflow.com/questions/834588/why-is-jquery-deleting-my-img-element/834813#834813 0 Answer by Steve Perks for Why is jQuery deleting my <img> element? Steve Perks 2009-05-07T13:59:46Z 2009-05-07T13:59:46Z <p>You can use .append to add the text</p> <pre><code>$('#progressMessage').text('Please wait!'); </code></pre> <p><a href="http://docs.jquery.com/Manipulation/append#content" rel="nofollow">.append()</a></p> http://stackoverflow.com/questions/826053/thumbnail-gallery-height-problem/826188#826188 0 Answer by Steve Perks for Thumbnail gallery height problem Steve Perks 2009-05-05T18:09:11Z 2009-05-05T18:09:11Z <p>How much is the height really going to vary? If it's not going to vary much then just set the height to that of the max?</p> <p>For browsers that support inline-block:</p> <p>Although here's a <a href="http://foohack.com/2007/11/cross-browser-support-for-inline-block-styling/" rel="nofollow">inline-block cross browser</a> article</p> <pre><code>#thumbsWrapper div{display:inline-block;vertical-align:top;margin:20px;border:solid 1px #f00;width:180px;} &lt;div id="thumbsWrapper"&gt; &lt;div style="height:180px;"&gt; &lt;img src="thumbnail1.gif" /&gt; &lt;/div&gt; &lt;div style="height:240px;"&gt; &lt;img src="thumbnail2.gif" /&gt; &lt;/div&gt; &lt;div style="height:210px;"&gt; &lt;img src="thumbnail3.gif" /&gt; &lt;/div&gt; &lt;div style="height:100px;"&gt; &lt;img src="thumbnail4.gif" /&gt; &lt;/div&gt; &lt;div style="height:300px;"&gt; &lt;img src="thumbnail5.gif" /&gt; &lt;/div&gt; &lt;div style="height:100px;"&gt; &lt;img src="thumbnail6.gif" /&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/825156/css-nested-not-working-the-way-i-want-it-to/825405#825405 1 Answer by Steve Perks for CSS Nested not working the way i want it to! Steve Perks 2009-05-05T15:21:38Z 2009-05-05T15:21:38Z <p>It may also suffice to use:</p> <pre><code>table.infoBox { font-weight: bold; } table.infoBox table { font-weight: normal; } </code></pre> <p>or</p> <pre><code>table.infoBox tr { font-weight: bold; } table.infoBox table tr { font-weight: normal; } </code></pre> <p>Though all css depends on other font-weight rules throughout your css, it's handy to note that css declerations are based on decendensy, not direct parent child relation ship. So <code>table{}</code> will have just the same effect on the content as <code>td{}</code> so long as you don't have anything stronger or closer to the content defined.</p> http://stackoverflow.com/questions/493203/any-insight-into-using-google-wireless-transcoder 0 Any insight into using Google Wireless Transcoder? Steve Perks 2009-01-29T20:14:30Z 2009-05-01T04:29:02Z <p>I was recently asked to "<em>just</em> stick a link at the top" of one of our sites to offer hand held users the use of http://stackoverflow.com">Google's Wireless Transcoder.</p> <p>Initially I was skeptical but as I started to look into it I became intrigued that this could save me a lot of work. Though I'd love to implement a hand held solution for all our sites, I don't have the time, So I started taking this request a little seriously and maybe intercepting all user agents identify themselves as hand helds, but the more I think about it the more I get nervous that I'm going to screw something up.</p> <p>I know that there is a lot of thinking that should go into this, and some of the things that immediately come to mind are:</p> <ul> <li>The ability to support access to gated content</li> <li>The ability to style the site</li> <li>Tracking (or getting metrics) users considering they're coming through a proxy</li> <li>The inability to display ads</li> <li>Any other gotchas that I haven't thought about yet</li> </ul> <p>I'm going to have to get this thought through quickly before I'm <strong>told</strong> to <em>just</em> throw this link up there.</p> <p>Does anyone have any useful information that would help me in my decision to do or reject this, either on a global scale or on a more measured individual scale for just this site (understanding that just this site will probably quickly roll out to every site at the individual level...)?</p> <p>Cheers<br> Steve</p> http://stackoverflow.com/questions/798482/ie-z-index-relative-absolute-bug-in-list/799012#799012 1 Answer by Steve Perks for IE z-index relative/absolute bug in list Steve Perks 2009-04-28T17:22:50Z 2009-04-28T17:22:50Z <p>Here's a very good article that explains the stacking issues that machineghost mentions.</p> <p><a href="http://css-discuss.incutio.com/?page=OverlappingAndZIndex" rel="nofollow">http://css-discuss.incutio.com/?page=OverlappingAndZIndex</a></p> <p>What you might want to consider (depending on why you're wanting the positioning on multiple elements) is adding a hover selector to .base (use JavaScript for IE6) that adds the class to give it relativity.</p> <pre><code>.base:hover{position:relative;} </code></pre> <p>This then means that the second .base doesn't have position: relative.</p> http://stackoverflow.com/questions/798535/changing-media-specific-css-properties-from-javascript/798606#798606 0 Answer by Steve Perks for Changing media specific CSS properties from Javascript Steve Perks 2009-04-28T15:41:47Z 2009-04-28T15:41:47Z <p>You could just use JavaScript to switch classes, and have the</p> <pre><code>@print { .myPrintClass { font-family: serif; } } @screen { .defaultClass { font-family: sans-serif; } } </code></pre> http://stackoverflow.com/questions/798431/asp-net-mvc-html-actionlink-css-background-image/798520#798520 1 Answer by Steve Perks for ASP.NET MVC Html.ActionLink CSS Background Image Steve Perks 2009-04-28T15:22:10Z 2009-04-28T15:22:10Z <p>it's a.edit:hover, not a:hover.edit</p> http://stackoverflow.com/questions/774497/div-width-problem/775130#775130 1 Answer by Steve Perks for Div Width Problem Steve Perks 2009-04-21T23:36:49Z 2009-04-21T23:36:49Z <p>For the div to expand out of the view pane you need it to have a width. If it doesn't have a width then it takes the width of it's container. When content is bigger than it's container (the div or body, etc.) then it behaves according to overflow, the default being visible.</p> <p>options are:</p> <pre><code>overflow: visible; overflow: hidden; overflow: auto; overflow: scroll; </code></pre> <p><a href="http://www.w3schools.com/Css/pr_pos_overflow.asp" rel="nofollow">http://www.w3schools.com/Css/pr_pos_overflow.asp</a></p> http://stackoverflow.com/questions/775060/how-to-hide-the-content-of-the-div-in-css/775067#775067 0 Answer by Steve Perks for how to hide the content of the div in css Steve Perks 2009-04-21T23:13:37Z 2009-04-21T23:13:37Z <pre><code>#mybox:hover { display: none; } #mybox:hover { visibility: hidden; } #mybox:hover { background: none; } #mybox:hover { color: green; } </code></pre> <p>though it should be noted that IE6 and below wont listen to the hover when it's not on an A tag. For that you have to incorporate JavaScript to add a class to the div during the hover.</p> http://stackoverflow.com/questions/10877/how-can-you-customize-the-numbers-in-an-ordered-list/488160#488160 4 Answer by Steve Perks for How can you customize the numbers in an ordered list? Steve Perks 2009-01-28T15:54:43Z 2009-01-30T00:09:00Z <p>Stole a lot of this from other answers, but this is working in FF3 for me. It has <code>upper-roman</code>, uniform indenting, a close bracket.</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt; new document &lt;/title&gt; &lt;style type="text/css"&gt; &lt;!-- ol { counter-reset: item; margin-left: 0; padding-left: 0; } li { margin-bottom: .5em; } li:before { display: inline-block; content: counter(item, upper-roman) ")"; counter-increment: item; width: 3em; } --&gt; &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;ol&gt; &lt;li&gt;One&lt;/li&gt; &lt;li&gt;Two&lt;/li&gt; &lt;li&gt;Three&lt;/li&gt; &lt;li&gt;Four&lt;/li&gt; &lt;li&gt;Five&lt;/li&gt; &lt;li&gt;Six&lt;/li&gt; &lt;li&gt;Seven&lt;/li&gt; &lt;li&gt;Eight&lt;/li&gt; &lt;li&gt;Nine&lt;/li&gt; &lt;li&gt;Ten&lt;/li&gt; &lt;/ol&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Cheers,<br /> Steve</p> http://stackoverflow.com/questions/465526/line-numbering-and-copy-paste-html-css/493686#493686 0 Answer by Steve Perks for Line numbering and copy/paste (HTML/CSS) Steve Perks 2009-01-29T22:09:34Z 2009-01-29T22:09:34Z <p>I think the answer is more to do with the application you're pasting into rather than the browser's copying process, and this is actually the right thing for the browser to do?</p> <p>Hopefully you're providing semantic HTML and thus wouldn't copying the OL be the desired result? What if the user was copying and pasting a set of paragraphs or text that contained a link or an image? Wouldn't you suspect that the user would want to be able to copy the paragraph and paste it with semantic layout intact?</p> <p>Cheers,<br> Steve</p> http://stackoverflow.com/questions/375763/whats-the-best-website-for-learning-html-semantically Comment by Steve Perks on What's the best website for learning HTML Semantically? Steve Perks 2009-11-30T23:53:52Z 2009-11-30T23:53:52Z @timothy.green.name - I agree that there are valid reasons for the italics element and I like that you've pointed it out. I just wish that tutorial sites would introduce it at a later, more advanced, stage. http://stackoverflow.com/questions/1725409/how-does-one-identify-an-empty-element-using-jquery-that-might-contain-a-comment/1725473#1725473 Comment by Steve Perks on How does one identify an empty element using jQuery that might contain a comment tag? Steve Perks 2009-11-12T22:02:44Z 2009-11-12T22:02:44Z I have to give you full credit - this solution presented another issue, but you certainly provided the correct answer to the question... http://stackoverflow.com/questions/1725409/how-does-one-identify-an-empty-element-using-jquery-that-might-contain-a-comment/1725473#1725473 Comment by Steve Perks on How does one identify an empty element using jQuery that might contain a comment tag? Steve Perks 2009-11-12T21:26:22Z 2009-11-12T21:26:22Z that second solution hit the nail on the head... very much appreciated. http://stackoverflow.com/questions/1725409/how-does-one-identify-an-empty-element-using-jquery-that-might-contain-a-comment/1725463#1725463 Comment by Steve Perks on How does one identify an empty element using jQuery that might contain a comment tag? Steve Perks 2009-11-12T21:20:38Z 2009-11-12T21:20:38Z This is a nice flat answer and worthy of some applause, but I can't believe there isn't a solution to this! http://stackoverflow.com/questions/1725409/how-does-one-identify-an-empty-element-using-jquery-that-might-contain-a-comment/1725473#1725473 Comment by Steve Perks on How does one identify an empty element using jQuery that might contain a comment tag? Steve Perks 2009-11-12T21:18:53Z 2009-11-12T21:18:53Z I have, that addressed of the whitespace, but didn't address the comment tag. http://stackoverflow.com/questions/1676725/how-would-i-stagger-text-around-an-uneven-background-image/1677815#1677815 Comment by Steve Perks on How would I stagger text around an uneven background image? Steve Perks 2009-11-11T14:24:20Z 2009-11-11T14:24:20Z While I'm some way from implementing HTML5, I've yet to look at the &lt;code&gt;canvas&lt;/code&gt; element and will go and explore. Thanks. http://stackoverflow.com/questions/1676725/how-would-i-stagger-text-around-an-uneven-background-image Comment by Steve Perks on How would I stagger text around an uneven background image? Steve Perks 2009-11-04T21:41:20Z 2009-11-04T21:41:20Z I should add, that the answer I've always used, and I'm quite happy to continue using unless informed otherwise here, is &quot;There's not an easy way to wrap around irregular images, so you either need to change your design or accept that the editors are going to be blaming you rather than me for this&quot;. http://stackoverflow.com/questions/1675414/hide-scrollbar-in-pre-if-not-needed Comment by Steve Perks on Hide scrollbar in pre if not needed Steve Perks 2009-11-04T21:33:47Z 2009-11-04T21:33:47Z No one else is seeing the issue. Maybe you're logged in and as such get a different set of style sheets? http://stackoverflow.com/questions/1070178/why-does-ie8-add-bottom-border-on-my-image-anchor-tag Comment by Steve Perks on Why does IE8 add bottom border on my image anchor tag? Steve Perks 2009-07-01T18:03:17Z 2009-07-01T18:03:17Z Has this been fixed? Because I can't duplicate the issue. http://stackoverflow.com/questions/376248/css-selector-style/376390#376390 Comment by Steve Perks on CSS Selector Style Steve Perks 2009-07-01T00:04:00Z 2009-07-01T00:04:00Z It would be most helpful if you would add a comment if you think the answer is wrong! I think you're doing the original poster a disservice by marking this answer as bad. http://stackoverflow.com/questions/1066492/why-do-dev-tools-offer-quirks-mode/1066644#1066644 Comment by Steve Perks on Why do dev tools offer Quirks mode? Steve Perks 2009-06-30T23:51:25Z 2009-06-30T23:51:25Z You raise a whole new set of questions with that reliability statement staticsan. Are you just referring to old browsers not recognizing them or are you saying that modern browsers can fall out of standards mode somehow somewhere? http://stackoverflow.com/questions/1066492/why-do-dev-tools-offer-quirks-mode/1066579#1066579 Comment by Steve Perks on Why do dev tools offer Quirks mode? Steve Perks 2009-06-30T23:42:03Z 2009-06-30T23:42:03Z Cheers Ben - I will continue to not use it, since neither care for those older browsers nor create plugins as Arafangion brought up good rational answer. http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102738#102738 Comment by Steve Perks on What was your first home computer? Steve Perks 2009-06-30T23:32:09Z 2009-06-30T23:32:09Z Lads and Laddettes - Programming doesn't need colour. Spectrum was just personal arcade machine made for jumping barrels. http://stackoverflow.com/questions/1066492/why-do-dev-tools-offer-quirks-mode/1066571#1066571 Comment by Steve Perks on Why do dev tools offer Quirks mode? Steve Perks 2009-06-30T23:20:55Z 2009-06-30T23:20:55Z But wouldn't that be just a case of choosing an appropriate transitional approach? http://stackoverflow.com/questions/1066492/why-do-dev-tools-offer-quirks-mode/1066548#1066548 Comment by Steve Perks on Why do dev tools offer Quirks mode? Steve Perks 2009-06-30T23:15:33Z 2009-06-30T23:15:33Z Good answer - I hadn't thought of that one.