Training, Open Source computer languages

PerlPythonMySQLTclRubyC & C++LuaJavaTomcatPHPhttpdLinux

Search our site for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
.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
W704 - Web and Intranet - Cascading style sheets - putting it all together
H118 - Generating CSS through PHP

Back to
Bowerhill, Melksham, 2006 Calendar
Previous and next
or
Horse's mouth home
Forward to
SELECT in MySQL - choosing the rows you want

Some other Articles
Would you steal ... petrol? ... a training course?
We are about Open Source programming courses in the UK
10 years C# knowledge please
SELECT in MySQL - choosing the rows you want
.css - using PHP to make dynamic style sheets
Bowerhill, Melksham, 2006 Calendar
Good IT training cannot be cheap
Why is Tomcat called Tomcat?
I have a river to cross
Python printf
1780 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 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).

© WELL HOUSE CONSULTANTS LTD., 2008: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 0800 043 8225 or 01225 708225 • FAX: 0845 8382 405 or 01225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho