Does anyone know how to create panels in PHP Fusion?
I have a new site at http://www.thegatheringcoffeehouse.info and I really want to create a side panel with links to websites, much like what you see at http://www.redletterband.info/thegathering
Any help would be appreciated.
PHP Fusion Site Development
- Colton
- Diamond Member
- Posts: 1977
- Joined: Sunday Feb 09, 2003
- Location: Almost level with the ground.
- Contact:
I'm not familiar with that php system myself, but in vbulletin, nuke, and phpbb, you merely create a table in either the header or the theme's header, depending on which the site is using.
Something similar to this, take note the style variable is set for vbulletin
Hope this helps
Something similar to this, take note the style variable is set for vbulletin
Code: Select all
<!-- Left column START -->
<table width="$stylevar[outertablewidth]" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td valign="top" class="page" style="padding: $stylevar[cellpadding]px;">
<table>
<tr><td><a href="http://www.pcdevil.net/vb/">Forums</a></td></tr>
<tr><td><a href="irc://irc.gamersrealm.org/pcdevil">Join us on IRC</a></td></tr>
</table>
</td>
<td valign="top">
<!-- Left column STOP -->
Hope this helps
Laugh if you want to, really is kinda funny, 'cause the world is a car and you're the crash test dummy.
- Colton
- Diamond Member
- Posts: 1977
- Joined: Sunday Feb 09, 2003
- Location: Almost level with the ground.
- Contact:
Oh, and if your software uses cascading style sheets (css), you can soup up the toolbar with that by putting the class in the table data
. vbmenu_control is a defined style in my theme's css
example
. vbmenu_control is a defined style in my theme's css
example
Code: Select all
<tr><td class="vbmenu_control"><a href="http://pcdevil.net/vb/view.php?pg=wow_main">World of Warcraft</a></td></tr>
Laugh if you want to, really is kinda funny, 'cause the world is a car and you're the crash test dummy.