1

Topic: Can't create new styles in 1.3.2 Whats up wit dat!

I have created a new style and placed it in the style folder on the server. When I go into admin it does not show up. What am I doing wrong?

Thanks for you help.

Re: Can't create new styles in 1.3.2 Whats up wit dat!

Styles need a PHP file named by the style's ID with the style links in it. Example:

<link rel="stylesheet" type="text/css" media="screen" href="<?php echo $base_url.'/style/'.$forum_user['style'] ?>/mycss.css" />

So, if your style is called "mystyle", you will have to create "mystyle.php" and place it on the style's folder.

3

Re: Can't create new styles in 1.3.2 Whats up wit dat!

Thank you!