View previous topic :: View next topic |
Author |
Message |
Bison Explorer


Joined: May 11, 2010 Posts: 97
|
Posted: Mon Jan 09, 2012 2:58 pm Post subject: Make links blue? |
|
|
Not really sure where this would go, but can someone modify the forum settings so that links appear in blue text (or underlined text, or something)? It's rather difficult to discern where links are in text blocks right now. |
|
Back to top |
|
 |
ChesterKatz Explorer


Joined: Aug 01, 2011 Posts: 76
|
Posted: Mon Jan 23, 2012 5:56 pm Post subject: |
|
|
Seconding this. This is especially frustrating when browsing the forum on a mobile device. |
|
Back to top |
|
 |
GreatCatatonic Active Member


Joined: Mar 08, 2010 Posts: 357
|
Posted: Mon Jan 23, 2012 11:02 pm Post subject: |
|
|
It's been suggested, and the annoyance noted. I've tried looking for a forum setting to change, but without luck so far.
In the meantime, people have been using the [color=blue][/color] tags in their URL text, which I recommend.
--Great |
|
Back to top |
|
 |
ChesterKatz Explorer


Joined: Aug 01, 2011 Posts: 76
|
Posted: Mon Jan 23, 2012 11:59 pm Post subject: |
|
|
If there's no styling option directly within the forum settings, somebody will likely need to edit the CSS for the site. The style for the forums seems to be embedded directly on the page (there's also a linked stylesheet, but this seems to be primarily game-related styles).
You would need to find the lines that read:
Code: | a.postlink:link { text-decoration: none; color : }
a.postlink:visited { text-decoration: none; color : ; } |
and add colors like so:
Code: | a.postlink:link { text-decoration: none; color : #0000cc }
a.postlink:visited { text-decoration: none; color : #cc00cc } |
This should give blue text for unvisited links and purple text for visited links. |
|
Back to top |
|
 |
|