WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1Links and images Empty Links and images Sun Jun 20, 2010 10:22 pm

Guest


Guest
At my HTML pages,i want the linsk to have a color i want.What's the CSS code for that?
Also,al my images have a blue border there.How can i remove it?
Thanks Smile



Last edited by Cool-Processor on Mon Jun 21, 2010 3:36 am; edited 1 time in total

2Links and images Empty Re: Links and images Sun Jun 20, 2010 10:34 pm

ankillien

ankillien
Administrator
Administrator
To change the link color...

Code:
a:link {
color : #000000;
}

Link color on hover...

Code:
a:link {
color : #00FFFF;
}

Remove border around images...

Code:
img {
border : none;
}

3Links and images Empty Re: Links and images Sun Jun 20, 2010 10:49 pm

Guest


Guest
thanks for that,but i dont find any difference between the link color and hover code :S

4Links and images Empty Re: Links and images Sun Jun 20, 2010 11:35 pm

ankillien

ankillien
Administrator
Administrator
Sorry, my bad!

Here is the code for link hover color...

Code:
a:hover {
color : #00FFFF;
}

5Links and images Empty Re: Links and images Sun Jun 20, 2010 11:36 pm

Guest


Guest
ok regards!
Solved & Locked! Smile

6Links and images Empty Re: Links and images Mon Jun 21, 2010 8:46 am

ankillien

ankillien
Administrator
Administrator
Glad I could help Very Happy

Solved | Locked

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum