Log in

View Full Version : How do I accomplish Adding Spaces bewtween Catagories and Centering images in Forum?


seaweed
06-18-2009, 04:25 PM
These are two challeges that i have been trying overcome. I have received excellent help from Lynne, but no sooner did I make one step forward I ran in to another road block. I will try to provide as much info as possibble, As always i truly appreciate any help you can provide.

Problem one
My Forum appear to one continuous forum, there are not spaces between the catagoies. i would like to somehow add space, separator or redesign if neccesary.
It currently looks like thishttp://spearfishingplanet.com/tempimg/sfp no spaces.jpg
I would like my forum to look more like the VB.org Forum index like this https://vborg.vbsupport.ru/external/2009/06/93.jpg
Im not sure how to over come this, i have tried creating a variety of different forums on a test forum but still cant figure it out.


Problem 2
After Lynne helped me to figure out to how identify a template, identify the code with in a template and edit. I can now add an image to to a specific forum. However I cannot figure out how to align the image and the text next to each other horizontally level.
The code I'm using is <div align="center"><if condition="$forumid == 35">
<img src="http://www.spearfishingplanet.com/sfpbannerads/topicads/spucclub.jpg"width="299" height="64""ALIGN=RIGHT" "valign=center"> <else />
</if></div>
Depend on how i modify placement of the code I end up with these results
https://vborg.vbsupport.ru/external/2009/06/94.jpg
Or
https://vborg.vbsupport.ru/external/2009/06/95.jpg

I hope I have provided enough information, and that someone will understand my goals.
Tia
Seaweed

--------------- Added 1245364481 at 1245364481 ---------------

doesn't anyone have any suggestions for me?

seaweed
06-22-2009, 07:20 PM
Really no advice? Did i not provide enough info? Or is my request impossible? Am i too much of newb?

Sofia
06-26-2009, 07:19 PM
Hi you :)

Problem 1: Use this template mod: https://vborg.vbsupport.ru/showthread.php?t=209961 or https://vborg.vbsupport.ru/showthread.php?t=204013&highlight=spacing

Problem 2: Give me more informations. Where do you want to place your image?

If you want to align your image to the right, near your forum title, you must do this:

In the template forumhome_forumbit_level2_post,
Find:

<td class="alt1Active" align="$stylevar[left]" id="f$forum[forumid]">Add below:

<if condition="$forumid == 35">
<img src="http://www.spearfishingplanet.com/sfpbannerads/topicads/spucclub.jpg"width="299" height="64""ALIGN=RIGHT" "valign=center" align="right"> <else />
</if>

EnIgMa1234
06-26-2009, 07:38 PM
For problem 2 try this:


<if condition="$forumid == 35">
<span style="float: right">
<img src="http://www.spearfishingplanet.com/sfpbannerads/topicads/spucclub.jpg"width="299" height="64">
</span></if>