Where time permits, I will try and put together some guides, from my "chat tweaks" over the last year or two.
This is a sample of my style.css.php ... which shows how to add your own online panel backdrop.
- Code: Select all
/*usernames-onlinelist*/
div.pfc_online {
position: absolute;
font-size: 11px;
right: 0px;
top: 0px;
padding: 0px;
overflow: auto;
width: [b]139px;[/b]
border-bottom: 1px solid #555;
/* WARNING: do not fix height in % because it will display blank screens on IE6 */
/* height: 100%;*/
color: #000; /* colors can be overriden by js nickname colorization */
background-color: #fdfceb;
background-image: url("<?php echo $c->getFileUrlFromTheme('[b]YOURTHEMEDIR/YOURIMAGE.jpg[/b]'); ?>");
background-repeat: repeat-y;
background-position: left;
background-repeat: repeat-y;
/* borders are drawn by the javascript routines */
}
The main things to set above being, your custom image path and it's "width"
Hope this helps some folks?
All the best,
Cal
