MyBB Community Forums

Full Version: Custom link color issue.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2

MikeInToshx

Hey guys I got a lil issue with link color.

"Aanmelden" and "registreren" are the same color as my link colors, so if I change that to white, the other circles u can see on the picture will turn white too..

So how can I just change the color of "Aanmelden" and "registreren" without the others changing?

the css of this is: "a:link, a:visited"

[attachment=30039]


Cheers!
you can try using style like a.register , a.login {color: #fff !important;}

MikeInToshx

Worked like a charm. Cheers bro! (a)

Can I do the same with "Zoeken" "Ledenlijst".. too? I'd like to make the font black instead of bleu.
^ yes, you can try using style like a.search , a.memberlist {color: #000 !important;}

MikeInToshx

Hmm. The rollover went black then aswell, also the one I made myself ('Handleidingen') didn't work.

I saved it, u can look if u want to: www.computerhelpforum.be

Cheers.
^ well, you can try adding !important for the hover effect style
#panel ul.menu li a:hover {
	background: #004488;	
        color: #fff !important;
}

remember to hard refresh browser on index page (eg. press CTRL + F5) after saving changes to the css

MikeInToshx

I added this and worked aswell:

a.search , a.memberlist , a.calendar , a.forum-tutorials {color: black !important;}
a.search:hover , a.memberlist:hover , a.calendar:hover , a.forum-tutorials:hover {color: #fff !important;}

But the last one still wont work ! a.k.a "Handleidingen" button.
^ add a css class for that link (in header template) so that you can use the same method.

MikeInToshx

Aah that worked. Cheers Wink

MikeInToshx

Theres 1 more thing I overlooked, the 'Lost Password' text is still the same color aswell. How do I fix this one?

[attachment=30060]
Pages: 1 2