PDA

View Full Version : [HowTo] [3.5.0] Add a Right Column?


Floris
Thu 29th Sep '05, 10:04pm
[HowTo] [3.5.0] Add a Right Column?

This template modification will guide you through the steps with clear instructions and visual examples on how to add a right column to your vBulletin forum version 3.5.0. Once added, you can fill the right column with your own XHTML code, for custom graphics, advertisements, links, etc.

Original thread by Jake Bunce for vBulletin forum software version 3.0.x:
http://www.vbulletin.com/forum/showthread.php?t=101599

[HowTo] [3.5.0] Add a Left Column? -thread can be found here:
http://www.vbulletin.com/forum/showthread.php?t=156408


NOTE: There is a lot of tweaking involved in modifying your layout like this. This code is just an example, minus the tweaking. I recommend you post on http://www.vbulletin.org/ for help with the tweaking aspect of editing your layout.


Installation Instructions
(click on the attached images to zoom in)

# Updating the 'header' template

Admin Control Panel (login as full admin) > Styles & Templates (section) > Style Manager (link) > Select from the dropdown: Edit templates

16250

Select the 'header' template and click on the [Customize] button.

16251

In the template, find this code:<!-- content table -->

Above this code, on a new empty line, add these code lines:<!-- Right Column START -->
<table width="$stylevar[outertablewidth]" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td valign="top">
<!-- Right Column START -->

Save Template in History: Yes [x] (Check the checkbox)
Comment: Added Right Column Code

Click on the [Save] button to apply the changes.

16248


# Updating the 'footer' template

Admin Control Panel (login as full admin) > Styles & Templates (section) > Style Manager (link) > Select from the dropdown: Edit templates

16250

Select the 'footer' template and click on the [Customize] button.

16252

In the template, find this code:<!-- /content area table -->

Above this code, on a new empty line, add these code lines:<!-- Right Column STOP -->
<td width="175" valign="top" class="page" style="padding: $stylevar[cellpadding]px;">
YOUR CONTENT HERE
</td>
</td>
</tr>
</table>
<!-- Right Column STOP -->

Save Template in History: Yes [x] (Check the checkbox)
Comment: Added Right Column Code

Click on the [Save] button to apply the changes.

16249


NOTE: The 'header' template now has this text: (load your forums to view it)YOUR CONTENT HEREEdit the 'header' template again and replace that text with your own custom XHTML code, be it a graphic or advertisement or links.

You are now done.

16253