PHP Fusion Site Development

Q & A on technical issues concerning music equipment, electronics, sound, recording, computers, gaming, the internet, etc.

Moderators: Ron, Jim Price

Post Reply
User avatar
rreihart
Platinum Member
Platinum Member
Posts: 964
Joined: Wednesday Nov 10, 2004
Location: Loretto, PA
Contact:

PHP Fusion Site Development

Post by rreihart »

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.
User avatar
Colton
Diamond Member
Diamond Member
Posts: 1977
Joined: Sunday Feb 09, 2003
Location: Almost level with the ground.
Contact:

Post by Colton »

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

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.
User avatar
Colton
Diamond Member
Diamond Member
Posts: 1977
Joined: Sunday Feb 09, 2003
Location: Almost level with the ground.
Contact:

Post by Colton »

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

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.
Post Reply