It's a little more compact than the one in the download.
The scrolling part of the chat height is controlled by the class:
- Code: Select all
.shouts {
width: 82%;
height: 200px;
overflow: auto;
float: left;
}
Make sure when you put the chat.css file in your theme/ directory, you add it to your stylesheet.css
Open theme/stylesheet.css
Find
- Code: Select all
@import url("colours.css");
- Code: Select all
@import url("chat.css");
To put the chat in your index page you do this:
Open template/index_body.html
Find
- Code: Select all
<!-- IF S_DISPLAY_ONLINE_LIST -->
- Code: Select all
<!-- INCLUDE chat_body.html -->
If you want the chat in the top of the index page, remove the line <!-- INCLUDE chat_body.html -->
and add it higher in your template...
Add Before
- Code: Select all
<!-- INCLUDE forumlist_body.html -->
You can even add it in higher than that...
Add After
- Code: Select all
<!-- INCLUDE overall_header.html -->












