
pawcook at 11h54
21
Nov
2011
Sorry if this is a noobish question but I cant work out how to change the color of web links within posts on my forum. I am using phpBB3.
http://thecooks.topicboard.net/
I would like it something like we have here ie: my link above is blue, on my forum they are the same color as the rest of the text.
http://thecooks.topicboard.net/
I would like it something like we have here ie: my link above is blue, on my forum they are the same color as the rest of the text.
1 Guest, on 21/11/2011 at 12h01
Add to your CSS Stylesheet:
Replace #aaa #bbb and #ccc with your own color, here you have to select nice colors - http://www.colorschemer.com/online.html
The first code with #aaa is for links; #bbb when you put mouse on these; #ccc when click on links.
- Code:
a{
color: #aaa !important;
}
a:hover{
color: #bbb !important;
}
a:active{
color: #ccc !important;
}
Replace #aaa #bbb and #ccc with your own color, here you have to select nice colors - http://www.colorschemer.com/online.html
The first code with #aaa is for links; #bbb when you put mouse on these; #ccc when click on links.
2 pawcook, on 21/11/2011 at 12h36
Thanks for the prompt reply Gassy
I have applied the following to my CSS Stylesheet
But it has not changed anything yet, do I need to do anything else to 'activate' the CSS Stylesheet?
Edit: lol I am a noob! I just deleted the numbers at the front and it works perfectly, Thanks Gassy
I have applied the following to my CSS Stylesheet
- Code:
1. a{
2. color: #3366FF !important;
3. }
4.
5. a:hover{
6. color: #FFCC33 !important;
7. }
8.
9. a:active{
10. color: #3366FF !important;
11. }
But it has not changed anything yet, do I need to do anything else to 'activate' the CSS Stylesheet?
Edit: lol I am a noob! I just deleted the numbers at the front and it works perfectly, Thanks Gassy
3 Nera., on 21/11/2011 at 12h49
Topic solved
Similar topics
Remove Line Under Links
Removing the underline below the links
This can be annoying to many people, so here is a fast tutorial to learn how to remove the line under the links. I'll show you how to do it by HTML and CSS - that's the easiest way to do
Hello.
I want link to just the single post.I want them only to see that post and nothing else.
Thanks.
New users on my forum can't post links. Which is important because the forum is for a game and you have to post a link to your profile when you join.
Replies 1 to 3 on 3 for "Color of a web link in a post"
Search
Informations
3 Replies For the topic :
"Color of a web link in a post"
This topic has been viewed 724 times.
Last message :
21/11/2011 at 11h54 by "pawcook"





