Log in

View Full Version : Link style in posts


Aotw
03-05-2006, 12:18 PM
Hey !
Trying to find a way to make links inside a thread message to look different, like adding different colour or using strong font style. Now they just look like all the rest text and almost impossible to see them.

Princeton
03-05-2006, 04:02 PM
the easiest way would be to alter your
a:link
a:visited
a:active
classes

change
text-decoration:noneto text-decoration:underline

you can do this via ADMINCP / STYLES / MAIN CSS

Aotw
03-05-2006, 06:22 PM
Tested several option their, but i always changes other links i dont want to change also.

Princeton
03-05-2006, 09:39 PM
well ... create a class just for the postbit cell (message div)

merk
03-06-2006, 08:20 AM
What princeton suggested does work. You must be changing the settings in the wrong area.

You should be changing the link settings under the Style Options for First Alternating Colour and Second Alternating Colour (and probably WYSIWYG Editor).

Aotw
03-06-2006, 04:41 PM
What princeton suggested does work. You must be changing the settings in the wrong area.

You should be changing the link settings under the Style Options for First Alternating Colour and Second Alternating Colour (and probably WYSIWYG Editor).

I added underline in first and second alternating colour but then i get the underline effect at places i dont want.

I tested to add a class in the postbit template at line 93, and added the css data to additional css, but still no luck. Maybe i'm at the wrong place ?


<!-- message -->
<div class="messlink" id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->

Aotw
03-09-2006, 04:26 AM
I added underline in first and second alternating colour but then i get the underline effect at places i dont want.

I tested to add a class in the postbit template at line 93, and added the css data to additional css, but still no luck. Maybe i'm at the wrong place ?


<!-- message -->
<div class="messlink" id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->

Solved
I had to add the class to postbit legacy not postbit template. Thx for helping out.