PDA

View Full Version : Basic Forum Home Help


Bacon Butty
03-12-2008, 10:57 AM
Hi guys,

Any help on this would be massively appreciated, been trying for ages but have no luck.

Right, hope I can explain this. Basically I installed JoomlaSlideshow on vBulletin and display it on 'forumhome', however I have no idea as to how to change the position. (I have asked on JoomlaWorks support forum but no response (http://forum.joomlaworks.gr/index.php?topic=3832.0))

What I want to achieve is to move the slideshow to the left, allowing me to put something to the right of it, screenshot here (http://img177.imageshack.us/img177/6858/gotpa9.jpg)

The code in my forum home is;

$header
$navbar

$jwfpss




$jwfpss is the slideshow, just need to figure out how to allign it to the left? I have tried the basic align html tags but haven't no luck what so ever.

Big thanks to anyone who can help. (Sorry to mods if this is posted in wrong forum)

Princeton
03-12-2008, 01:06 PM
the center alignment is most likely done via CSS
if you know CSS .. then I recommend floating the new object right/left.

if you know nothing about CSS, wrap the area in a <table> with 2 cells

<table>
<tr>
<td>$jwfpss</td>
<td>something else</td>
</tr>
</table>

Bacon Butty
03-12-2008, 02:59 PM
the center alignment is most likely done via CSS
if you know CSS .. then I recommend floating the new object right/left.

if you know nothing about CSS, wrap the area in a <table> with 2 cells

<table>
<tr>
<td>$jwfpss</td>
<td>something else</td>
</tr>
</table>

Thanks!, have spent ages looking for a solution and that second option really did the trick.

Pushing my luck now but do you know if its possible to a shoutbox or 'latest/recent threads' list to the right of the slideshow? In other words display it were you have wrote 'something else'

beckyvan
04-11-2009, 12:00 AM
This was very helpful to me as well! Thank you!