You can change the style of your links by adding code, like on my example below, to your style sheet. You can use some of the same properties used for text on your links too. More information on styles for links can be found on the echoecho website.
It’s good to add comments to your code, because that will make your code easier to read later on and you will know what the code does.
/* Links
— — — — — — — — — — — — — — — – */
a:link {
color:#DEA64E;
text-decoration:none;
}
a:visited {
color:#6E8F7E;
text-decoration:none;
}
a:hover {
color:#DEA64E;
text-decoration:none;
padding: 1px;
background-color:#6E8F7E;
}
You can find the xhtml file here and a test blog here.
Welcome back! Nice to see you again, hope you enjoy your visit.







February 7th, 2005 at 8:19 am
hello. this is a great site, thanks for sharing your knowledge with the rest of us. i think its very kool of you to help bloggers better their blogs even though you are a teachers with 4 kids. very kool–
anyways im having trouble centreing (sp?) a graphic/link on my page (at the bottom of my page). im not sure how to go about it, if you could tell me how thatd be grande.
great site!
February 8th, 2005 at 10:18 am
Thanks for your comment! There are different ways to center something on a page. The easiest way I think would be to use a bit of code like this:
<div style=“text-align: center”></div> around your graphic/link.
More information about centering in CSS can be found here: All My FAQs WikiHope this helps!