ID:160461
 
Is there a way to make them NOT be blue and underlined?? It tends to look ver ugly and unprofessional, unless the sentence is along the lines of "click here to go here".
So yeah, is there a way? Thanks ;)
If you have a custom skin, I believe you can change it in the output options.
In response to Andre-g1
Cool, I fidn't know that ;) but I was talking about browser windows.
In response to Adam753
Browser.. Hmm, I believe you can change it too, the color at least. Not sure about the underlining.
In response to Adam753
Adam753 wrote:
Cool, I fidn't know that ;) but I was talking about browser windows.

Browser windows utilize the same methods of page styling that any webpage on the internet does -- CSS.

For example, if you wanted your links to be green, the page source could look something like this:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>some page</title>
<style type="text/css">
a:link
{
background-color: transparent;
color: #00ff00;
text-decoration: underline overline;
}
</style>
</head>
<body>
Some believe <a href="byond.com">BYOND</a> is a nice platform for developing games. Others have a large stick firmly wedged in their rear end.
</body>
</html>