|
|
Joined: Jul 2004
Posts: 87
journeyman
|
|
journeyman
Joined: Jul 2004
Posts: 87 |
Hi I am running Version: 7.0.2 (will upgrade to 7.3 when it is released), meanwhile I would like to add my logo to the top of the board.
is this possible - could someone please point me in right direction?
thanks
Jeff
|
|
|
|
|
Joined: Aug 2006
Posts: 1,360 Likes: 2
Veteran
|
|
Veteran
Joined: Aug 2006
Posts: 1,360 Likes: 2 |
control panel > display options > html inserts.
You can add a header there using php/html and show a logo.
|
|
|
|
|
Joined: Jul 2004
Posts: 87
journeyman
|
|
journeyman
Joined: Jul 2004
Posts: 87 |
In control panel > display options - I have the following options: Looked in a few (cant' see html inserts?)
General Images & Icons Styles Languages Templates
Forums
|
|
|
|
|
Joined: Dec 2006
Posts: 1,235
veteran
|
|
veteran
Joined: Dec 2006
Posts: 1,235 |
Control Panel / Display Options / General / HTML Includes
|
|
|
|
|
Joined: Jul 2004
Posts: 87
journeyman
|
|
journeyman
Joined: Jul 2004
Posts: 87 |
|
|
|
|
|
Joined: Jun 2006
Posts: 3,839 Likes: 1
Carpal Tunnel
|
|
Carpal Tunnel
Joined: Jun 2006
Posts: 3,839 Likes: 1 |
You can also set custom headers/footers within the forum settings for each forum. 
|
|
|
|
|
Joined: Jul 2004
Posts: 87
journeyman
|
|
journeyman
Joined: Jul 2004
Posts: 87 |
|
|
|
|
|
Joined: Jun 2006
Posts: 3,839 Likes: 1
Carpal Tunnel
|
|
Carpal Tunnel
Joined: Jun 2006
Posts: 3,839 Likes: 1 |
If you add a custom header, don't forget to add a custom footer. I tend to use custom headers for various forums, with the same footer for each (however you still need to copy the standard footer into the custom footer box, otherwise it will not be shown) Sadly you cannot have custom header/footers for categories, which is a shame 
|
|
|
|
|
Joined: Aug 2006
Posts: 1,360 Likes: 2
Veteran
|
|
Veteran
Joined: Aug 2006
Posts: 1,360 Likes: 2 |
Sadly you cannot have custom header/footers for categories, which is a shame  You could make a header, and just use an include statement in the forums for that category. We have a standard header for all forums, and code in it checks which category it's in and displays extra stuff or not.
|
|
|
|
|
Joined: Jun 2006
Posts: 3,839 Likes: 1
Carpal Tunnel
|
|
Carpal Tunnel
Joined: Jun 2006
Posts: 3,839 Likes: 1 |
tell us more 
|
|
|
|
|
Joined: Aug 2006
Posts: 1,360 Likes: 2
Veteran
|
|
Veteran
Joined: Aug 2006
Posts: 1,360 Likes: 2 |
tell us more  This is (part) of my headercode...
<?
$datum = date(md);
if ($datum>1205 | $datum<0106) { $event='kerst'; }
elseif (($datum>"0320") && ($datum<"0325")) { $event='paas'; }
elseif ($datum=="0430") { $event='koningin'; }
elseif ($datum=="0521") { $event='verjaardag'; }
elseif ($datum>"1100") { $event='sint'; }
elseif ($datum>"1000") { $event='halloween'; }
else { $event=''; }
if ($category==3) { $logo=$event.'kc'; } else { $logo=$event.'tp'; }
echo "<a href=\"/ubb/ubbthreads.php\"><img src=\"/images/".$logo."tim.png\" border=\"0\" style=\"padding: 5px;\" alt=\"\" /></a></td><td align=\"right\" valign=\"top\">";
$kcorg="Kermisclub organizer";
$tporg="Themepark organizer";
if ($category==3) { $kcorg="<b>".$kcorg."</b>"; }
if ($category==2) { $tporg="<b>".$tporg."</b>"; }
echo "<a href=\"/scripts/tporganizer/\">$tporg</a><br /><a href=\"/scripts/kcorganizer/\">$kcorg</a><br /><br />";
echo "<a href=\"/scripts/forumfaces/\">Forumfaces</a><br />";
if ($category==3) {
echo $kvdw;
}
?>
I look at the date because we change logo's at holidays (christmas, sinterklaas, halloween, easter, queen's day and our forum birthday), and for category 3 we change to a different logo. In our on topic fora categories (2 and 3) a specific link is highlighted. In category 3 an extra text is displayed with the funfair of the week. So one header to rule them all.
|
|
|
|
|
Joined: Jun 2006
Posts: 16,532 Likes: 150
|
|
Joined: Jun 2006
Posts: 16,532 Likes: 150 |
I use a php include on my forums and pull a flat file that I maintain (as to not make the web based thing too cluttered...
I also use css for my imagre
|
|
|
|
|
Joined: Apr 2007
Posts: 3,940 Likes: 1
Former Developer
|
|
Former Developer
Joined: Apr 2007
Posts: 3,940 Likes: 1 |
|
|
|
|
1 members (1 invisible),
304
guests, and
96
robots. |
|
Key:
Admin,
Global Mod,
Mod
|
|
|
|