Log in

View Full Version : Quick and Easy Question


Lizard King
07-16-2005, 04:26 AM
I think it is because its morning again and i againg didn't sleep. For the last one hour i am thinking something very easy and cannot figure it out :)

In my showthread page i want to change the links color to another color then alt1 or alt2 . I first think i need to change postbit_legacy template and change <td class="alt2">

<if condition="$show['messageicon'] OR $post['title']">
to
<td class="alt4">

<if condition="$show['messageicon'] OR $post['title']">

and then add this to additional css definitions

.alt4 {
background-color: #f6f6f6;
color: #11162D;
font-size: 10pt;
font-family: helvetica;
}

a.alt4:link {
background-color: #82A056;
text-decoration: none;
border-bottom: 1px dotted #11162D;
color : #11162D;
padding-bottom: 0px
}
a.alt4:visited {
background-color: #82A056;
text-decoration: none;
border-bottom: 1px dotted #11162D;
color : #11162D; padding-bottom: 0px
}
a.alt4:hover {
background-color: #82A056;
text-decoration: none;
border-bottom: 0px dotted #11162D;
color : #11162D; padding-bottom: 0px
}

I might be making a stupid mistake but i couldn't figure this out myself. Hope someone can help me :nervous:

enginethatcan't
07-16-2005, 04:57 AM
Can't you just click "edit styles" Edit style options, then scroll down and edit the color code?

All you wanna do is change the link color right?

Lizard King
07-16-2005, 05:53 AM
Can't you just click "edit styles" Edit style options, then scroll down and edit the color code?

All you wanna do is change the link color right?

As i already described i dont want to change alt1 or alt2 link color. I just want to change the link color in showthread.

Guest190829
07-16-2005, 07:11 AM
Well since you have it completed already, I don't think it really matters. But thinking about it, I think that's the best way to do it. You could have always used inline css, but I would have gone the same route you did.