Author Topic: sidebars on videopage  (Read 305 times)

0 Members and 1 Guest are viewing this topic.

Offline dani001

  • Newbie
  • *
  • Posts: 17
  • Karma: 0
    • View Profile
sidebars on videopage
« on: November 16, 2009, 02:41:24 PM »
hi i wanted to add sidebars on my video page

Offline Shave.

  • Development Team
  • Full phpd Member
  • *******
  • Posts: 80
  • Karma: 0
    • View Profile
    • PHPD Mods
Re: sidebars on videopage
« Reply #1 on: November 16, 2009, 11:59:15 PM »
the simplest way to do this is tables. ie.

Code: [Select]
<table>
<tr>
<td>
Left Side
</td>
<td>
Video Here
</td>
<td>
Right Side
</td>
</tr>
</table>

Of course you add in the table properties aswell such as the width and height.