Page is a not externally linkable
mincklerstraat - 5:22 pm on Sep 8, 2004 (gmt 0)
possible additions: - just wanna see how all your divs are laid out & sized? -> webdev extension for firefox, various 'outline' functions & miscellaneous > 'show block id's'. Irreplacable for me. Nit-picking: want '#' in your <h1> examples in color declaration.
Very nice summary, webwork.
- need special css sheet done in php? link it like usual, w/parameters & whatnot <link rel stylesheet href="stylesheet.php?this=that&whatever=somemore" type="text/css"> - but to make it work in firefox, you gotta give it the right content-type headers or it won't work, so at the top:
header('Content-type: text/css');
then - since php doesn't give any cache-control headers, and you want this to be cached like other stylesheets -
header('Expires: '.date('D, d M Y H:i', (time() + 24*60*60)).' GMT'); (multiplied number is one day - fill in however long you want your stylesheet to be cacheable for)
and then your stylesheet declarations with all your supercool & groovy php specialized stuff.