Hi miniBBteam
At first I would like to thank for this great forum package.
I'm not a professional in PHP (and english!) just like the web design and spend a lot of time with it.
In brief I was searching a solution in this forum and the NET to change the outlook of forum simply,
but did'nt find any useful thing.
Finally I have applied the next my idea to five different skin (including default):
Download the css files,
In my case:
bb_black_style.css, bb_brown_style.css, bb_green2_style.css, bb_macgrey_style.css
If you want to be same all style edit the next rows in the styles by the standard default:
-----------------------
table.forums {
width: 770px;
---------------------
.tbTransparent{
width: 770px;
background: transparent;
font-size: 12px;
text-align: left;
}
--------------------------
Open index.php and setup.options.php //EditPlus or notebook/
Edit the next rows:
In index.php
from: include ('./setup_options.php'); to include ('./setup_options_bl.php');
Save as index_bl.php //for black style//
----------------------------------
in index.php
from: include ('./setup_options.php'); to include ('./setup_options_br.php');
Save as index_br.php //for brown style//
-----------------------------------------------------------
...So on till any number of style
---------------------------------------------------------------------- ------------------------------------------
In setup_options.php
from $skin='default'; to $skin='black';
from $indexphp='index.php?'; to $indexphp='index_bl.php?';
from $startIndex='index.php'; to $startIndex='index_bl.php';
Save as setup_options_bl.php //for black style//
----------------------------------------------------
...So on till any number of style
---------------------------------------------------------------------- --------------------------------------------
Open main_header.html and put five link with name blue-black-brown-green-grey to index.php(blue-default)
index_bl.php (black), index_br.php (brown) .....etc.
If you have direct link to the rules (rules.html) or other file, paste
the next link after the {$l_menu[9]} (or after the last element)
<a href="http:?action=tpl&tplName=rules">Rules</b>
Save and copy under templates
In the rules.html between head and head
<link href="https://www.minibb.com/forums/bb_{$skin}_style.css" type="text/css" rel="STYLESHEET">
Save and copy under templates
At the end of your editing you have five index.php:
index.php //default
index_bl.php //black
index_br.php //brown
index_gr.php //green
index_mg.php //macgrey
five setup_options.php:
setup_options.php
setup_options_bl.php
setup_options_br.php
setup_options_gr.php
setup_options_mg.php
and five css files:
bb_default_style.css
bb_black_style.css
bb_brown_style.css
bb_green2_style.css
bb_macgrey_style.css
Copy into the root
Of course this style changing solution does'nt work between files, since if anybody wants to change style under registration process
(for example) the result will be a new start page.
It works on my site: http://www.antennalap.hu
Lajos