Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Not Solved How to make a link text different color?
#1
Not Solved
How do you make links in posts/pms a different color from other text? Like for example:

I love http://www.chitnchat.net it is a great forum.

The link is blue and the text is grey, how do I change that so my links are blue on my site? Thanks!
#2
Not Solved
theme's global.css consists code like below to show links in blue color
a:link {
    color: blue;
    text-decoration: none;
}
#3
Not Solved
(2013-04-26, 11:51 AM).m. Wrote: theme's global.css consists code like below to show links in blue color
a:link {
    color: blue;
    text-decoration: none;
}


Where?
#4
Not Solved
admin panel >> themes >> your forum's active theme >> global.css >> Edit Stylesheet: Advanced Mode
#5
Not Solved
(2013-04-26, 12:13 PM).m. Wrote: admin panel >> themes >> your forum's active theme >> global.css >> Edit Stylesheet: Advanced Mode

How do I get it so it does it only for posts/pms? Right now when I do that it changes link text color for everywhere on the forum, wrecking the theme.
#6
Not Solved
add below code at the end of global.css
.post_content a  {
        color: blue !important; 
        text-decoration: none!important;
       }
#7
Not Solved
(2013-04-26, 02:44 PM).m. Wrote: add below code at the end of global.css
.post_content a  {
        color: blue !important; 
        text-decoration: none!important;
       }

Do I still add the other code or only this one?
#8
Not Solved
^ only the above (post #6)


Forum Jump:


Users browsing this thread: 1 Guest(s)