PDA

View Full Version : Tech Style set issue


calldaffer
01-26-2003, 01:10 PM
Alright, I got this skin off of vbulletin.com and everything installed great except for one small issue. Please see my attached picture. Notice how my "Last Post" column and "Moderator" column are not lined up in the correct place, anyone know where I'd go to correct this issue? Please tell me what templete I need to be in to fix this and what exactly I need to do also. Thanks.

calldaffer
01-26-2003, 01:13 PM
LOL, forgot to attach the file....DOH!

Dean C
01-26-2003, 03:21 PM
It's a colspan issue - you must have edited something in the style - re-do it :)

- miSt

calldaffer
01-26-2003, 04:12 PM
Unfortunatly re-doing it is not an option for me ;) Reason being is that the person who designed this style directed all images used in the set to pool from the imagesfolder. So I had to manually go templete by templete and redirect all the images to a new place so that it wouldn't overwrite my main images folder. Took me around 2 or 3 hours :D I can't put myself through that again LOL....is there another way around this? Maybe by adjusting a table width somewhere??

Dean C
01-26-2003, 04:53 PM
Well can you post up a full size screenshot (you can censor your domain if you wish)

- miSt

calldaffer
01-26-2003, 06:08 PM
don't need to censor anything since the URL to my forums is in my signature :D

Here is a full size look:

mr e
01-26-2003, 06:34 PM
just go into your forumhome template and there is an extra < td > tag in there that is pushing all your others cells over one

Dean C
01-26-2003, 06:50 PM
Mr e is right - you have an extra <td> tag in your "forumhome_forumbit_level1_post" template.

Post it up if you can't find it yourself :)

- miSt

calldaffer
01-26-2003, 09:13 PM
Alright, I didn't have any luck with "forumhome_forumbit_level1_post" so I'll post it for ya'll to look at ;)


<tr align="center">
<td bgcolor="{firstaltcolor}" colspan="2" align="left">
<table cellpadding="0" cellspacing="0" border="0"><tr>
<td valign="top"><img src="http://www.gamingevolved.com/forums/techimages/images/$forum[onoff].gif" border="0" alt=""></td>
<td><img src="http://www.gamingevolved.com/forums/techimages/images/clear.gif" width="9" height="0" border="0" alt=""></td>
<td><a href="forumdisplay.php?s=$session[sessionhash]&forumid=$forum[forumid]"><normalfont><b>$forum[title]</b></normalfont></a>
<br><smallfont>$forum[description]

</tr></table>
</td>
<td bgcolor="{firstaltcolor}"><smallfont>$forum[lastpostinfo]</smallfont></td>
<td bgcolor="{secondaltcolor}"><normalfont>$forum[replycount]</normalfont></td>
<td bgcolor="{firstaltcolor}"><normalfont>$forum[threadcount]</normalfont></td>

mr e
01-26-2003, 11:56 PM
it's not level1, it's level2

calldaffer
01-28-2003, 10:59 PM
Alright, here is my level 2


<tr align="center">
<td bgcolor="#1C5780" valign="top"><img src="http://www.gamingevolved.com/forums/techimages/images/$forum[onoff].gif" border="0" alt=""></td>
<td bgcolor="#13486D">
<table width=100% cellspacing="0" cellpadding="0" border="0">
<tr>
<td align="left">
<a href="forumdisplay.php?s=$session[sessionhash]&forumid=$forum[forumid]"><normalfont><b>$forum[title]</b></normalfont></a></td>
<td width="35%" align="right" valign="top">
</td>
</tr>
<td colspan="2">
<smallfont>$forum[description]</smallfont>
</td>
</tr>
</table>
</td>
<td bgcolor="#1C5780"><smallfont>$forum[lastpostinfo]</smallfont></td>
<td bgcolor="#13486D"><normalfont>$forum[replycount]</normalfont></td>
<td bgcolor="#1C5780"><normalfont>$forum[threadcount]</normalfont></td>
</tr>


Can you show me where the problem is?

Dolby
01-30-2003, 06:42 PM
Why did you remove the {images} variable? You could of just changed 1 path in the style edit menu for that style.

Goto AdminCP
goto Styles
Goto Modify
Click [fonts/colors/etc] on the techie style
scroll down to Image folder path and type in:
/forums/techimages/images

tada... saved your self hours of work. I know it works too becuase when I make a style I always use the variable for the path incase I want to release it some day.

Your going to have slower load times using the full (http://) path and things wont cache right.

calldaffer
01-30-2003, 09:11 PM
DOH!! I was totally unaware you could do that man. Thanks for the info......I'll be sure to make a note of that for the future. Anyway, anyone know the fix to this issue?

mr e
01-31-2003, 01:41 AM
well im not sure what you did here, but fix it


<tr align="center">
<td bgcolor="#1C5780" valign="top"><img src="http://www.gamingevolved.com/forums/techimages/images/$forum[onoff].gif" border="0" alt=""></td>
<td bgcolor="#13486D">
<table width=100% cellspacing="0" cellpadding="0" border="0">
<tr>
<td align="left">
<a href="forumdisplay.php?s=$session[sessionhash]&forumid=$forum[forumid]"><normalfont><b>$forum[title]</b></normalfont></a></td>
<td width="35%" align="right" valign="top">
</td>
</tr> <------------------This is what I'm talking about, don't need this
<td colspan="2">
<smallfont>$forum[description]</smallfont>
</td>
</tr>
</table>
</td>
<td bgcolor="#1C5780"><smallfont>$forum[lastpostinfo]</smallfont></td>
<td bgcolor="#13486D"><normalfont>$forum[replycount]</normalfont></td>
<td bgcolor="#1C5780"><normalfont>$forum[threadcount]</normalfont></td>
</tr>


or copy/paste it into dreamweaver and mess around with it there