PDA

View Full Version : Changing URL colour only in post


hqlman
06-07-2009, 03:59 PM
Hi,

Ive tried searching the forums for a simple mod that would allow me to change the URL link colour only in thread replies, as its very hard to see on my board, is there anyway to do this easilly and efficiently?

see this img to get an idea of what my forum URLs look like in thread:
https://vborg.vbsupport.ru/external/2009/06/130.jpg
\
Thanks

hqlman
06-08-2009, 10:28 PM
seems like this isnt something easy :erm:

Dismounted
06-09-2009, 07:03 AM
You will need to edit the postbit template and change the CSS styling for the "message".

hqlman
06-09-2009, 07:09 PM
Thanks for the reply, could u be a bit more specific as im not too good with the styling, btw im using the postbit legacy template

RustyDogma
06-30-2009, 06:49 PM
I want to do exactly this... could really use some help on how to edit the CSS properly.

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

I have the colors I want in the page background and body, so basically, I want to apply that CSS to this <div>?

Dismounted
07-01-2009, 04:59 AM
Replace the $post[message] line with this:
<span class="post_custom">$post[message]</span>
Then add this to "additional CSS", which can be found in the style manager. Look in the dropdown next to the style's name.
.post_custom a { color: #000000; }
Remember to replace the colour.

RustyDogma
07-01-2009, 01:16 PM
Thanks so much, exactly what I needed!

hqlman
07-02-2009, 10:44 PM
Replace the $post[message] line with this:
<span class="post_custom">$post[message]</span>
Then add this to "additional CSS", which can be found in the style manager. Look in the dropdown next to the style's name.
.post_custom a { color: #000000; }
Remember to replace the colour.

THank you soo much for your help :D