|
.css - using PHP to make dynamic style sheets
Did you know that you can use PHP to generate dynamic style sheets? If you look at the accessibility options on our new-look website, you'll find you can change the colour and font size on all the pages, and you can select wide and narrow too. And if you're using an older browser that doesn't fully support styles you'll get an older-look menu than if you have IE6 or similar.
A lot of hard work? Oh yes, but all in one set of pages. Our style sheets are not simply flat files - but rather they're php files that generate the necessary style combination from a single master file, with parameters passed in to set all the various parameters. Here, for example, is the start of the file and part that sets one of the font sizes.
<?php
header("content-type: text/css");
$mencolour = "#ffffcc";
$texcolour = "#000000";
$bfsize = 10;
if ($_REQUEST[fsize] == 4) $bfsize = 8;
if ($_REQUEST[fsize] == 2) $bfsize = 12;
if ($_REQUEST[fsize] == 1) $bfsize = 16;
?>
.tierlinks {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: <?= $bfsize ?>px;
color: #000000;
text-align: left;
text-indent: 2pt;
}
Other issues that will arise if you use this "trick" are cache controls - making sure that the style sheet isn't sent our for every page - and ensuring that the file is parted by the PHP handler even if you choose to give it a .css extension. (written 2005-11-21 18:56:52)
Associated topics are indexed under H118 - Generating CSS through PHPW704 - Web and Intranet - Cascading style sheets - putting it all together
Some other Articles
Would you steal ... petrol? ... a training course?We are about Open Source programming courses in the UK10 years C# knowledge pleaseSELECT in MySQL - choosing the rows you want.css - using PHP to make dynamic style sheetsBowerhill, Melksham, 2006 CalendarGood IT training cannot be cheapWhy is Tomcat called Tomcat?I have a river to crossPython printf
|
2259 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|