I'm trying to make a change log but I want to have links like on the website playrust.com when they release something there is a link at the top that is white and glows when you hove over it if someone could help me or give me a code for it that would be very helpful.
You would want to use hover, text-shadow and color. So basically here's a example...
[code]
.your_link:hover {
text-shadow: 0.1em 0.1em #fff;
color: #fff;
}
[/code]
You can look up some of these or do the HTML and CSS tutorial on [URL="http://www.htmldog.com/"]this site[/URL].
Sorry, you need to Log In to post a reply to this thread.