Search Results

1
vote

Are liquid layouts still relevant?

Yes - you don't know what resolution the reader is using, or what size screen - or even if accessibility is required/used. As mentioned above, not everybody knows about full page zoom - I know abou …
0
votes

Whats a liquid layout?

Liquid Layouts refer to the design concept of a website. A liquid layout will move in and out when you resize your browser window, due to is having percentages and relative widths in the CSS. …
4
votes

Typical pitfalls of cross-browser compatibility

CSS - largely sorted out in the modern browsers, but still an issue - particularly as pertains to layout. Note that this is not critical - but it is a compatibility issue I almost always en …
0
votes

Is it time to start using HTML5?

Firefox 3.1 should support the <video> tag, and the next version of Safari will support that and the <audio> tag - but there will be no way to degrade gracefully (Edit: I've seen some J …
2
votes

Order of tags in <head></head>

Not a daft question at all. CSS above Script tags for reasons already mentioned. CSS is applied in the order you place the tags - the more specific the stylesheet, the lower down the …
1
vote

How might I update this code

I found this code on the web (from a usability site) which caters for IE and others, and I use it on my flash pages (I've changed it to your code): <!--[if !IE]> --> <ob …
0
votes

Dynamic resizing / repositioning of divs for multi-column viewing

The only way I can think of is a mixture of dynamic CSS and javascript. Every time a column (feed) is added, use the javascript to rewrite the width (in percentage) of each div. jQuery wo …
0
votes

HTML <head> best practices

There is a related question here that may help add some light regarding the order of the tags. Gener …
0
votes

How can I send html mails with included CSS with PHPmailer?

I've found the best (read broadest) support for CSS is inline (style=""). Sad, but true. …
1
vote

Providing alternative images if Adobe Flash isn’t available

I use the following code for graceful degradation. It works well. <!--[if !IE]> --> <object type="application/x-shockwave-flash" data="flash.swf" width="500" height="100 …
1
vote

Search engine redirecting

Use a sitemap.xml submitted at Google Webmaster Tools? The other thing I'd consider would be a 302 redirect from the index.html …
4
votes

Need to have spacing between end of div and beginning of paragraph

Give the final paragraph an id - #disclaimer, perhaps - then style that to have padding-top. <p id="disclaimer">Herkimer County Community College does not discriminate on the …