MyBB Community Forums

Full Version: $lang- welcome back question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
{$lang->welcome_back}

with this code when user enter profile it says "Welcome USER Last visit" etc.

But when I enter the profile from USER link of "Welcome USER Last visit" board Link changes color to purple from blue.[Image: v1qc8.jpg]
When mouse get over of USER link it changes its color to green.[Image: v1qch.jpg]
I can change the color when mouse over link.But I cant change the links color which i already entered?PLZ help me
Use :visited instead of :hover to change it for visited links. Like this:
.yourlinkclassorwhatever:visited {
       color: #123;
}
can you write code which i will write visited instead of hover
How can I know that from screens? You told:
(2013-11-30, 08:37 PM)Mensur Qulami Wrote: [ -> ]I can change the color when mouse over link.
It's impossible to change it without touching :hover, so you should know what I'm talking about and do the same for :visited at the end instead of :hover.