PDA

View Full Version : little border issue


Nordinho
11-23-2004, 06:12 PM
Heya,

Does anyone know how to change the black border in the attached screenshot??

It should be using the alt 2 class...

Greets Nordinho,

Brian
11-23-2004, 08:32 PM
There's a lot of black there, so I may be missing what you're talking about. I believe that would be controlled by your 'tborder' class though... Or you could edit your templates and change the class for those tables. Or if I'm missing your point please attach a new image highlighting the specific area you're talking about.

Our Sponsors
 

Nordinho
11-24-2004, 09:47 AM
There's a lot of black there, so I may be missing what you're talking about. I believe that would be controlled by your 'tborder' class though... Or you could edit your templates and change the class for those tables. Or if I'm missing your point please attach a new image highlighting the specific area you're talking about.

hey Brian, thanks for your reply

I tried changing the class for it, but it doesn't respond to that...you can see it here http://www.nordinho.com/vbull/links/?

This was the code used:
<if condition="$show['modcolumn']">
<td align="center" class="alt2"><if condition="$vba_options['links_allowreplies']">alt1<else />alt2</if>">$cats[moderator]</td>
</if>

I tried changing it to:
<if condition="$show['modcolumn']">
<td align="center" class="alt2"><if condition="$vba_options['links_allowreplies']">alt1<else />alt2</if><span class="smallfont">$cats[moderator]</span></td>
</if>

but that doesn't have any effect...

Greets,

Brian
11-24-2004, 01:15 PM
Looks like you've changed the default code. This is what it should be:
<if condition="$show['modcolumn']">
<td align="center" class="<if condition="$vba_options['links_allowreplies']">alt1<else />alt2</if>">$cats[moderator]</td>
</if>

Our Sponsors
 

Nordinho
11-24-2004, 08:48 PM
Looks like you've changed the default code. This is what it should be:
<if condition="$show['modcolumn']">
<td align="center" class="<if condition="$vba_options['links_allowreplies']">alt1<else />alt2</if>">$cats[moderator]</td>
</if>

Hmmm...I changed it back to the default, but it doesn't make a difference...it's still the same...any other ideas??

Greets,

Brian
11-24-2004, 09:04 PM
You could try changing that to this and see if it makes a difference:

<if condition="$show['modcolumn']">
<td align="center" class="<if condition="$vba_options['links_allowreplies']">alt1<else />alt2</if>"><if condition="$cats[moderator]">$cats[moderator]<else />&nbsp;</if></td>
</if>

If that doesn't help and you'd like to submit a support ticket I'll be glad to take a look.

Nordinho
11-28-2004, 10:56 AM
You could try changing that to this and see if it makes a difference:

<if condition="$show['modcolumn']">
<td align="center" class="<if condition="$vba_options['links_allowreplies']">alt1<else />alt2</if>"><if condition="$cats[moderator]">$cats[moderator]<else />&nbsp;</if></td>
</if>

If that doesn't help and you'd like to submit a support ticket I'll be glad to take a look.

hmmm...it didn't work, so I decided to change the colors of the site once again, so the border is hardly viewable anymore...anyway, thanks for the help!!