MyBB Community Forums

Full Version: link colour
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
please how can i change my text colour of my links in my post and i woud not affect the coolour of my menus, what i mean is that my top menu colour will not be affected, just the links colours in my post.

http://forum.talkcloud.com.ng
In your global css, line 1814:
#navbar li a {
    display: block;

Make it:
#navbar li a {
    color: #fff;
    display: block;

And now you can change your general link color at line 14:
a:link {
    color: #fff;

to anything, for example:
a:link {
    color: red;
(2018-11-04, 04:39 AM)effone Wrote: [ -> ]In your global css, line 1814:
#navbar li a {
    display: block;

Make it:
#navbar li a {
    color: #fff;
    display: block;

And now you can change your general link color at line 14:
a:link {
    color: #fff;

to anything, for example:
a:link {
    color: red;

thanks, it worked but it changed the colour of my subform, i just want to change just my link colour, not the menu colour and not the subform colour. please help. thanks

http://forum.talkcloud.com.ng

please how can i change the colour of my links,  not the menu colour and not the subform colour. please help. thanks

http://forum.talkcloud.com.ng

please help me
i have got the solution

Add the following class in your theme's global.css

.post_body a:link, .post_body a:active, .post_body a:visited{
color: #FFFF00 !important; /* Its Yellow color. You may change it to your desired color. */
}