Changes 1.0.2 to 1.2.0:[*]fixed one little bug in index_body.html
[*]updated to be phpBB 3.0.4 compliant
- Added semi-dynamic borders
- Added higher quality .png forum images
- Added .png compatibility for IE6
- fixed online-image bug
- fixed "Who's online"-image bug
Code: Select all
.header-pad {
padding-top: 30px; /* adjust this according to the size of your site logo */
padding-left: 25px;
}
Code: Select all
<!-- IF postrow.S_ONLINE -->
<img style="float: right; margin-top: -10px; margin-right: -10px;" src="{T_IMAGESET_LANG_PATH}/icon_user_online.gif" title="Online" />
<!-- ELSE -->
<img style="float: right; margin-top: -10px; margin-right: -10px;" src="{T_IMAGESET_LANG_PATH}/icon_user_offline.png" title="Offline" />
<!-- ENDIF -->
<dt>
Code: Select all
Open styles/proFormell/theme/colours.css
Find:
[code].online {
background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online.png");
}
Code: Select all
.online {
background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online.gif");
}