Link Color

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
tinbad
Posts: 3
Joined: Tue Oct 22, 2013 5:14 pm

Link Color

Post by tinbad »

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.
Klemen
Site Admin
Posts: 10147
Joined: Fri Feb 11, 2005 4:04 pm

Re: Link Color

Post by Klemen »

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)

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;
}
This should get you started, but please note that teaching CSS is beyond the scope of this forum.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
tinbad
Posts: 3
Joined: Tue Oct 22, 2013 5:14 pm

Re: Link Color

Post by tinbad »

Thanks. I got it all and it worked. I was missing the a.smaller.
Post Reply