I modified the embedded code to have the chat automatically adjust to the browsers size.
To make chatango automatically resize just change the width from (in theory, this should work for height too but I didn't try it.)
to
Note that changing
doesn't seem to effect chatango but I'd change it anyway.
I found this out on my own ^.^. When trying to make something look better (Didn't quite do what I wanted it too) on the forums I tried using percentages instead of pixels and it worked!
----------------------------------
I reset the size of the avatars to 150x200 pixels do to issues with smaller windows. (I could of fixed it using CSS Stylesheet but decided reverting to 150x200 pixels was a better idea.)
----------------------------------
I set a default avatar. This avatar being the website's logo till I decide to make a custom one.
----------------------------------
I set the signatures to have a scrollbar when they go above 200 pixels high.
This is the script if you want it, add it to Admin Panel>>Display>>Colors>>CSS Stylesheet
Just changed 150 to what you want.
[EDIT] Updated to 250 pixels.
----------------------------------
Group colors were changed. Admins are now the color Amber (I love this color XP) and Revamped Contributors are a light blue to distinguish them and clicked links.
----------------------------------
The point of all this is to make the forum look clean.
If there are any suggestions or questions about the updates or for future updates please post.
-Merged topics-
To make chatango automatically resize just change the width from (in theory, this should work for height too but I didn't try it.)
- Code:
<object style="width: 780px; height: 380px;" id="obj_0123456789876">
- Code:
<embed style="width: 780px; height: 380px;"
to
- Code:
<object style="width: 100%; height: 380px;" id="obj_0123456789876">
- Code:
<embed style="width: 100%; height: 380px;"
Note that changing
- Code:
<object style="width: 780px; height: 380px;" id="obj_0123456789876">
doesn't seem to effect chatango but I'd change it anyway.
I found this out on my own ^.^. When trying to make something look better (Didn't quite do what I wanted it too) on the forums I tried using percentages instead of pixels and it worked!
----------------------------------
I reset the size of the avatars to 150x200 pixels do to issues with smaller windows. (I could of fixed it using CSS Stylesheet but decided reverting to 150x200 pixels was a better idea.)
----------------------------------
I set a default avatar. This avatar being the website's logo till I decide to make a custom one.
----------------------------------
I set the signatures to have a scrollbar when they go above 200 pixels high.
This is the script if you want it, add it to Admin Panel>>Display>>Colors>>CSS Stylesheet
- Code:
.signature_div {max-width:90%;max-height:150px;overflow:auto;}
Just changed 150 to what you want.
[EDIT] Updated to 250 pixels.
----------------------------------
Group colors were changed. Admins are now the color Amber (I love this color XP) and Revamped Contributors are a light blue to distinguish them and clicked links.
----------------------------------
The point of all this is to make the forum look clean.
If there are any suggestions or questions about the updates or for future updates please post.
-Merged topics-