PDA

View Full Version : Simple Template Question


Lucas
11-01-2006, 04:18 PM
How can I make it so that it is always DARK instead of being able to change it by yourself. I want it to be DARK by default.

Regards

jdleung
11-01-2006, 05:07 PM
replace the following two lines

<link rel="stylesheet" type="text/css" href="templates/simple/styles/light.css" title="light" />
<link rel="alternate stylesheet" type="text/css" href="templates/simple/styles/dark.css" title="dark" />

with

<link rel="stylesheet" type="text/css" href="templates/simple/styles/dark.css" title="dark" />
<link rel="alternate stylesheet" type="text/css" href="templates/simple/styles/light.css" title="light" />

me!
11-02-2006, 01:58 AM
If you want to make it fixed

use
<link rel="stylesheet" type="text/css" href="templates/simple/styles/dark.css" title="dark" />

then comment out the link to for switching.

Good luck,
y