1. In switcher.php, edit the following line, instead of entering stylesheet names, put in their id number, which you can discover by reading the link in stylesheets admin area:
Code: Select all
// This array lists the "acceptable" styles
$accept = array('default','large', 'xlarge', 'xxlarge'); /*ADD YOUR OPTIONS HERE*/
Code: Select all
// Change to stylesheet id numbers
$accept = array('default','45', '42', '44'); /*ADD YOUR OPTIONS HERE*/
3. Change the following line in {set_css}:
Code: Select all
$css_tag .= "name=$style\" media=\"screen\">";
Code: Select all
$css_tag .= "cssid=$style\" media=\"screen\">";