Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Hi, Im trying to change default color for links. Right now they are all black. How Can I change it to another color.
I looks in hesk_style_v25.css and can't find a:link color. I've also try added that myself and it didn't work. You do have "a { color : Blue; text-decoration : underline; }" but that didn't seem to work.
Any help would be appreciated.
Link Color
Moderator: mkoch227
Re: Link Color
CSS for links is in several places, just find and edit any codes for "a"
When testing also make sure you force refresh pages in your browser (usually CTRL + F5)
...
...
This should get you started, but please note that teaching CSS is beyond the scope of this forum.
When testing also make sure you force refresh pages in your browser (usually CTRL + F5)
Code: Select all
a {
color : Blue;
text-decoration : underline;
}
a:hover {
color : Red;
text-decoration : none;
}
a.smaller {
font-size: 10px;
color : Blue;
text-decoration : underline;
}
a.smaller:hover {
font-size: 10px;
color : Red;
text-decoration : none;
}
Code: Select all
table.white th a {
color : #23559C;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}
Code: Select all
a.article {
color : Black;
text-decoration: none;
font-size: 11px;
}
a.article:hover {
color : Red;
text-decoration : none;
}
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: Link Color
Thanks. I got it all and it worked. I was missing the a.smaller.