User Steve Perks - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T11:44:40Zhttp://stackoverflow.com/feeds/user/16124http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1676725/how-would-i-stagger-text-around-an-uneven-background-image2How would I stagger text around an uneven background image?Steve Perks2009-11-04T21:26:18Z2009-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><br /></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-comment0How does one identify an empty element using jQuery that might contain a comment tag?Steve Perks2009-11-12T21:06:53Z2009-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><div class="container container-no-title">
<div id="dnn_ctr6735_ContentPane" class="container-padding DNNAlignright">
<!-- Start_Module_6735 -->
<div id="dnn_ctr6735_ModuleContent">
<!-- End_Module_6735 -->
</div>
</div>
</div>
</code></pre>
<p>My initial jQuery was:</p>
<pre><code>$('.container-padding > 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#861627Answer by Steve Perks for What is the easiest or fastest way to make CSS render the same in all browsersSteve Perks2008-09-17T18:29:50Z2009-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-page1is there an argument to know you're on a views list page?Steve Perks2008-12-17T14:56:09Z2009-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><?php if ($title && ((arg(2) == 'track') || (arg(2) == 'edit') ||
(arg(0) == 'admin'))): ?>
<h1 class="title"><?php echo $title; ?></h1>
<?php endif; ?>
</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'] && arg(2) != 'edit') {
$vars['template_files'][] = 'page-'. $vars['node']->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-dnn2is it worth the effort to try and override the default classes in DNNSteve Perks2009-04-21T23:04:58Z2009-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-views0Can you call one Drupal views template for multiple views?Steve Perks2008-12-09T01:43:06Z2009-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->field as $id => $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' => $view,
'view_type' => $type,
);
foreach ($nodes as $i => $node) {
$vars = $base_vars;
$vars['node'] = $node;
$vars['count'] = $i;
$vars['stripe'] = $i % 2 ? 'even' : 'odd';
foreach ($view->field as $id => $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-module1How to change the HTML of the drupal 5's views moduleSteve Perks2008-11-19T16:04:40Z2009-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><?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');
?>
<?php print $view ?>
<div class="view-label view-field-title">
<?php print $title_label ?>
</div>
<div class="view-field view-data-title">
<?php print $title?>
</div>
<?php if ($comment_count != '0' && $view_type == 'block'): ?>
<div class="view-label view-field-comment-count">
<?php print $comment_count_label ?>
</div>
<div class="view-field view-data-comment-count">
<?php print $add?><?php print $comment_count?>
</div>
<?php endif; ?>
<?php if ($count == 0): ?>
<div class="view-label view-field-field-abstract-value">
<?php print $field_abstract_value_label ?>
</div>
<div class="view-field view-data-field-abstract-value">
<?php print $field_abstract_value?>
</div>
<?php endif; ?>
</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->field as $id => $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' => $view,
'view_type' => $type,
);
foreach ($nodes as $i => $node) {
$vars = $base_vars;
$vars['node'] = $node;
$vars['count'] = $i;
$vars['stripe'] = $i % 2 ? 'even' : 'odd';
foreach ($view->field as $id => $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-1Answer by Steve Perks for CSS Selector StyleSteve Perks2008-12-17T23:07:08Z2009-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-mode2Why do dev tools offer Quirks mode?Steve Perks2009-06-30T22:56:55Z2009-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-have0How much weight does a pseudo class have?Steve Perks2009-06-17T19:17:33Z2009-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#10093240Answer by Steve Perks for CSS: Can I select every type of element that are not within a specific class?Steve Perks2009-06-17T20:20:12Z2009-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-semantically4What's the best website for learning HTML Semantically?Steve Perks2008-12-17T19:40:12Z2009-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><b></b></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#8824891Answer by Steve Perks for CSS display:block problem, whos the culprit IE or Firefox?Steve Perks2009-05-19T12:36:08Z2009-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#8748522Answer by Steve Perks for Float div that fills all empty space of boxSteve Perks2009-05-17T15:42:51Z2009-05-17T15:42:51Z<p>Why use a div just to add a separate background arrow?</p>
<pre><code><div class="selected with-arrow">
<div class="text"></div>
</div>
.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#8576040Answer by Steve Perks for Display definition term and description inlineSteve Perks2009-05-13T12:10:55Z2009-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#8416080Answer by Steve Perks for Jquery $(this) Child SelectorSteve Perks2009-05-08T20:17:28Z2009-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#8375110Answer by Steve Perks for CSS To Add Underline After Header ContentSteve Perks2009-05-07T23:11:44Z2009-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#8374551Answer by Steve Perks for How to force css borders to display on layered page?Steve Perks2009-05-07T22:46:59Z2009-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-clickable0How can I make a background clickableSteve Perks2009-05-07T13:12:35Z2009-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><body>
<div id="sponsors-div" style="position:fixed;z-index:0;"><a style="display:block;height:100%" href="http://sponsors.url"></a></div>
<div id="site-container" style="position:relative;z-index:1;">...
</code></pre>
http://stackoverflow.com/questions/834588/why-is-jquery-deleting-my-img-element/834813#8348130Answer by Steve Perks for Why is jQuery deleting my <img> element?Steve Perks2009-05-07T13:59:46Z2009-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#8261880Answer by Steve Perks for Thumbnail gallery height problemSteve Perks2009-05-05T18:09:11Z2009-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;}
<div id="thumbsWrapper">
<div style="height:180px;">
<img src="thumbnail1.gif" />
</div>
<div style="height:240px;">
<img src="thumbnail2.gif" />
</div>
<div style="height:210px;">
<img src="thumbnail3.gif" />
</div>
<div style="height:100px;">
<img src="thumbnail4.gif" />
</div>
<div style="height:300px;">
<img src="thumbnail5.gif" />
</div>
<div style="height:100px;">
<img src="thumbnail6.gif" />
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/825156/css-nested-not-working-the-way-i-want-it-to/825405#8254051Answer by Steve Perks for CSS Nested not working the way i want it to!Steve Perks2009-05-05T15:21:38Z2009-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-transcoder0Any insight into using Google Wireless Transcoder?Steve Perks2009-01-29T20:14:30Z2009-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#7990121Answer by Steve Perks for IE z-index relative/absolute bug in listSteve Perks2009-04-28T17:22:50Z2009-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#7986060Answer by Steve Perks for Changing media specific CSS properties from JavascriptSteve Perks2009-04-28T15:41:47Z2009-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#7985201Answer by Steve Perks for ASP.NET MVC Html.ActionLink CSS Background ImageSteve Perks2009-04-28T15:22:10Z2009-04-28T15:22:10Z<p>it's a.edit:hover, not a:hover.edit</p>
http://stackoverflow.com/questions/774497/div-width-problem/775130#7751301Answer by Steve Perks for Div Width ProblemSteve Perks2009-04-21T23:36:49Z2009-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#7750670Answer by Steve Perks for how to hide the content of the div in cssSteve Perks2009-04-21T23:13:37Z2009-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#4881604Answer by Steve Perks for How can you customize the numbers in an ordered list?Steve Perks2009-01-28T15:54:43Z2009-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><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> new document </title>
<style type="text/css">
<!--
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;
}
-->
</style>
</head>
<body>
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
<li>Five</li>
<li>Six</li>
<li>Seven</li>
<li>Eight</li>
<li>Nine</li>
<li>Ten</li>
</ol>
</body>
</html>
</code></pre>
<p>Cheers,<br />
Steve</p>
http://stackoverflow.com/questions/465526/line-numbering-and-copy-paste-html-css/493686#4936860Answer by Steve Perks for Line numbering and copy/paste (HTML/CSS)Steve Perks2009-01-29T22:09:34Z2009-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-semanticallyComment by Steve Perks on What's the best website for learning HTML Semantically?Steve Perks2009-11-30T23:53:52Z2009-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#1725473Comment by Steve Perks on How does one identify an empty element using jQuery that might contain a comment tag?Steve Perks2009-11-12T22:02:44Z2009-11-12T22:02:44ZI 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#1725473Comment by Steve Perks on How does one identify an empty element using jQuery that might contain a comment tag?Steve Perks2009-11-12T21:26:22Z2009-11-12T21:26:22Zthat 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#1725463Comment by Steve Perks on How does one identify an empty element using jQuery that might contain a comment tag?Steve Perks2009-11-12T21:20:38Z2009-11-12T21:20:38ZThis 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#1725473Comment by Steve Perks on How does one identify an empty element using jQuery that might contain a comment tag?Steve Perks2009-11-12T21:18:53Z2009-11-12T21:18:53ZI 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#1677815Comment by Steve Perks on How would I stagger text around an uneven background image?Steve Perks2009-11-11T14:24:20Z2009-11-11T14:24:20ZWhile I'm some way from implementing HTML5, I've yet to look at the <code>canvas</code> element and will go and explore. Thanks.http://stackoverflow.com/questions/1676725/how-would-i-stagger-text-around-an-uneven-background-imageComment by Steve Perks on How would I stagger text around an uneven background image?Steve Perks2009-11-04T21:41:20Z2009-11-04T21:41:20ZI should add, that the answer I've always used, and I'm quite happy to continue using unless informed otherwise here, is "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".http://stackoverflow.com/questions/1675414/hide-scrollbar-in-pre-if-not-neededComment by Steve Perks on Hide scrollbar in pre if not neededSteve Perks2009-11-04T21:33:47Z2009-11-04T21:33:47ZNo 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-tagComment by Steve Perks on Why does IE8 add bottom border on my image anchor tag?Steve Perks2009-07-01T18:03:17Z2009-07-01T18:03:17ZHas this been fixed? Because I can't duplicate the issue.http://stackoverflow.com/questions/376248/css-selector-style/376390#376390Comment by Steve Perks on CSS Selector StyleSteve Perks2009-07-01T00:04:00Z2009-07-01T00:04:00ZIt 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#1066644Comment by Steve Perks on Why do dev tools offer Quirks mode?Steve Perks2009-06-30T23:51:25Z2009-06-30T23:51:25ZYou 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#1066579Comment by Steve Perks on Why do dev tools offer Quirks mode?Steve Perks2009-06-30T23:42:03Z2009-06-30T23:42:03ZCheers 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#102738Comment by Steve Perks on What was your first home computer?Steve Perks2009-06-30T23:32:09Z2009-06-30T23:32:09ZLads 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#1066571Comment by Steve Perks on Why do dev tools offer Quirks mode?Steve Perks2009-06-30T23:20:55Z2009-06-30T23:20:55ZBut 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#1066548Comment by Steve Perks on Why do dev tools offer Quirks mode?Steve Perks2009-06-30T23:15:33Z2009-06-30T23:15:33ZGood answer - I hadn't thought of that one.