View Full Version : Default to Dark Style
acain
06-26-2007, 02:34 PM
Hello, please forgive me if this subject has already been covered, I'm interested to know if it's possible to default to the dark style instead of the white style it defaulted to now. Thank you kindly.
Anthony
jaywilliams
06-26-2007, 02:47 PM
I believe you are referring to the "Simple" template.
You can change the default style by editing the template code. Open up each html file located in /templates/simple/ and find this code:
<!-- CSS -->
<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" />
Replace it with this:
<!-- CSS -->
<link rel="alternate stylesheet" type="text/css" href="templates/simple/styles/light.css" title="light" />
<link rel="stylesheet" type="text/css" href="templates/simple/styles/dark.css" title="dark" />
Note the world "alternate" has been moved from one style to the other.
That should do it.
vBulletin® v3.7.3, Copyright ©2000-2013, Jelsoft Enterprises Ltd.