PDA

View Full Version : Help Needed


monica
07-29-2002, 02:22 PM
It might be a stupid question but here it goes:
I want to put some information on the top right hand corner of the main page the way vbulletin has http://www.vbulletin.com/
(the mailing list information)
I dont have it in the default version that I downloaded and installed on my machine. How do I do that ?
Any input would really help.

Monica

mr e
07-29-2002, 05:35 PM
Well you could just do something like this


<p align="right">INFO</p>


that will align the info to the right of the page

monica
07-29-2002, 08:08 PM
Thanks, but I wanted to put it right next to the vbulleting logo (not above it and aligned right). The code in index.php kinda confusing for me as Im new to this field.

Thanks.

mr e
07-30-2002, 04:29 AM
Well try this instead, just edit the Header template and do something like


<table width="100%" border="0">
<tr>
<td rowspan="3">vBulletin Logo</td>
<td> </td>
</tr>
<tr>
<td align="right">Other Info</td>
</tr>
<tr>
<td> </td>
</tr>
</table>


anything you want to do would probably be easier in the templates if it's just HTML editing.