Tetra WebBBS Frequently Asked Questions

How to add my site's general stylesheet to the forums?

Assuming you have your site's styles defined in a separate, general stylesheet, all you need to do is add to your Meta.txt file (the template used for adding stuff to the <head> section of your forum pages) a <link> tag pointing to that general stylesheet.

Open the $data_basedir folder.
Open the */_tmpl* subfolder.
Download (in ASCII mode) the file *Meta.txt*.
Add a <link> tag pointing to your own general stylesheet (preferably after the <link> tags for webbbs.css and site.css.)
For example, if your own general stylesheet is http://www.yourdomain.com/path/to/your/stylesheet.css, then:

<link type='text/css' rel='stylesheet' href='/webbbs/css/webbbs.css'> 
<link type='text/css' rel='stylesheet' href='/webbbs/css/site.css'> 
<link type='text/css' rel='stylesheet' href='/path/to/your/stylesheet.css'>

Upload (in ASCII mode) the changed Meta.txt.
Reload (refresh) your forum page. Your forum page with the changed look should appear.

Recommended reading: