Spawn_of_Chaos97
Trainz for Everyone!
Umm...it appears that you have commented out the two bits of code at the top that actually set up the buttons to begin with...fix that and you should be fine lol...
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Umm...it appears that you have commented out the two bits of code at the top that actually set up the buttons to begin with...fix that and you should be fine lol...
<style type="text/css">
body
{
background-color:#ffffff;
background-image:url(header.png); background-repeat: repeat-x;
}
div.nav-links a {
float: left;
margin-right: 2px;
text-decoration: none;
}
a.nav-home {
background-image: url('http://www.freewebs.com/urbantrainz/home1.png');
height: 52px;
width: 120px;
display: block;
border: 0px solid;
}
a.nav-home:hover {
background-image: url('http://www.freewebs.com/urbantrainz/home2.png');
border: 0px solid;
}
a.nav-projects {
background-image: url('http://www.freewebs.com/urbantrainz/projects1.png');
height: 52px;
width: 193px;
display: block;
border: 0px solid;
}
a.nav-projects:hover {
background-image: url('http://www.freewebs.com/urbantrainz/projects2.png');
border: 0px solid;
}
</style>
<div class="nav-links">
<a class="nav-home" href="http://www.freewebs.com/urbantrainz/home.html"> </a>
<a class="nav-projects" href="http://www.freewebs.com/urbantrainz/projects.html"> </a>
</div>
<br style="clear: left;" />
a.nav-LINK_NAME {
background-image: url('http://www.freewebs.com/urbantrainz/IMAGE_NAME.png');
height: 52px;
width: 193px;
display: block;
border: 0px solid;
}
a.nav-LINK_NAME:hover {
background-image: url('http://www.freewebs.com/urbantrainz/IMAGE_HIGHLIGHT_NAME.png');
border: 0px solid;
}
<a class="nav-LINK_NAME" href="http://www.freewebs.com/urbantrainz/PAGE_NAME.html"> </a>
Not exactly the best way to do things but this will work as you want.
Add this in the head tag:
And this where you want the links:HTML:<style type="text/css"> body { background-color:#ffffff; background-image:url(header.png); background-repeat: repeat-x; } div.nav-links a { float: left; margin-right: 2px; text-decoration: none; } a.nav-home { background-image: url('http://www.freewebs.com/urbantrainz/home1.png'); height: 52px; width: 120px; display: block; border: 0px solid; } a.nav-home:hover { background-image: url('http://www.freewebs.com/urbantrainz/home2.png'); border: 0px solid; } a.nav-projects { background-image: url('http://www.freewebs.com/urbantrainz/projects1.png'); height: 52px; width: 193px; display: block; border: 0px solid; } a.nav-projects:hover { background-image: url('http://www.freewebs.com/urbantrainz/projects2.png'); border: 0px solid; } </style>
Simply put, to add more images just do the following. In the first section between the <style type="text/css"> and </style> add this as such:HTML:<div class="nav-links"> <a class="nav-home" href="http://www.freewebs.com/urbantrainz/home.html"> </a> <a class="nav-projects" href="http://www.freewebs.com/urbantrainz/projects.html"> </a> </div> <br style="clear: left;" />
And in the links area <div class="nav-links"> etc, after </a> you add the hyperlink to the page, so:HTML:a.nav-LINK_NAME { background-image: url('http://www.freewebs.com/urbantrainz/IMAGE_NAME.png'); height: 52px; width: 193px; display: block; border: 0px solid; } a.nav-LINK_NAME:hover { background-image: url('http://www.freewebs.com/urbantrainz/IMAGE_HIGHLIGHT_NAME.png'); border: 0px solid; }
Substitute LINK_NAME with the name you want to use and IMAGE_NAME and IMAGE_HIGHLIGHT_NAME upload the images and it'll all load and change when you scroll over.HTML:<a class="nav-LINK_NAME" href="http://www.freewebs.com/urbantrainz/PAGE_NAME.html"> </a>
Works in FireFox 2 and Internet Explorer 7, as I said, not really a good solution but it should do...
Remove "margin-right: 2px;" from "div.nav-links a".![]()
Wow! Thank you AGAIN! :udrool:
Is it possible you might know how to move those buttons to above the "UrbanTrainz" logo (to the top of the page, originating from left)?
Edit: Also, I just noticed that when I roll my cursor over the image for the first time (since the page is loaded) instead of changing to what I want it to it disappears. Can I fix this?
Remove <center> and </center> from the source code and it'll start from the left. The reason the images do that when you scroll over is because it has to load them first (each and every time, lol). Look into/google javascript and preloading of images, that might be able to fix the problem for you.
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
image1 = new Image();
image1.src = "image1.gif";
image2 = new Image();
image2.src = "image2.gif";
// End -->
</script>
image2 = new Image();
image2.src = "image2.gif";
Hi,
To preload an image you could use a simular code to waht I gave to you previously, to preload multiple images you could use womething like this:
Naturally, change image1.gif & image2.gif to your images, copy this section:Code:<SCRIPT LANGUAGE="JavaScript"> <!-- Begin image1 = new Image(); image1.src = "image1.gif"; image2 = new Image(); image2.src = "image2.gif"; // End --> </script>
And alter as needed.Code:image2 = new Image(); image2.src = "image2.gif";
<html>
<head><center>
<LINK REL="SHORTCUT ICON" HREF="http://www.freewebs.com/urbantrainz/favicon.ico">
<title>UrbanTrainz - Main page</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
image1 = new Image();
image1.src = "http://www.freewebs.com/urbantrainz/home2.png";
image2 = new Image();
image2.src = "http://www.freewebs.com/urbantrainz/projects2.png";'
image2 = new Image();
image2.src = "http://www.freewebs.com/urbantrainz/downloads2.png";
image2 = new Image();
image2.src = "http://www.freewebs.com/urbantrainz/forum2.png";
image2 = new Image();
image2.src = "http://www.freewebs.com/urbantrainz/chat2.png";
// End -->
</script>
<style type="text/css"> body { background-color:#ffffff; background-image:url(header.png); background-repeat: repeat-x; } div.nav-links a { float: left; text-decoration: none; } a.nav-home { background-image: url('http://www.freewebs.com/urbantrainz/home1.png'); height: 52px; width: 120px; display: block; border: 0px solid; } a.nav-home:hover { background-image: url('http://www.freewebs.com/urbantrainz/home2.png'); border: 0px solid; } a.nav-projects { background-image: url('http://www.freewebs.com/urbantrainz/projects1.png'); height: 52px; width: 193px; display: block; border: 0px solid; } a.nav-projects:hover { background-image: url('http://www.freewebs.com/urbantrainz/projects2.png'); border: 0px solid; } a.nav-LINK_NAME {
background-image: url('http://www.freewebs.com/urbantrainz/downloads1.png');
height: 52px;
width: 235px;
display: block;
border: 0px solid;
}
a.nav-LINK_NAME:hover {
background-image: url('http://www.freewebs.com/urbantrainz/downloads2.png');
border: 0px solid;
}
a.nav-LINK_NAME {
background-image: url('http://www.freewebs.com/urbantrainz/forum1.png');
height: 52px;
width: 139px;
display: block;
border: 0px solid;
}
a.nav-LINK_NAME:hover {
background-image: url('http://www.freewebs.com/urbantrainz/forum2.png');
border: 0px solid;
}
a.nav-LINK_NAME {
background-image: url('http://www.freewebs.com/urbantrainz/chat1.png');
height: 52px;
width: 101px;
display: block;
border: 0px solid;
}
a.nav-LINK_NAME:hover {
background-image: url('http://www.freewebs.com/urbantrainz/chat2.png');
border: 0px solid;
}</style>
<br><br><p></p><p></p><p></p>
<img src="logoonly.png">
</center>
</head>
<body>
<font face="Verdana">
<div class="nav-links"> <a class="nav-home" href="http://www.freewebs.com/urbantrainz/home.html"> </a> <a class="nav-projects" href="http://www.freewebs.com/urbantrainz/projects.html"> </a> </div> <br style="clear: left;" /> <a class="nav-downloads" href="http://www.freewebs.com/urbantrainz/downloads.html"> </a> <a class="nav-forum" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a> <a class="nav-chat" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a>
<br><br>
Sorry, this page is unavailable at the current time.<br><br>Reason: "maintenance"
<!-- Freewebs Sticker -->
<script language="JavaScript" src="http://images.freewebs.com/JS/Freebar/btn_angleblue.js">
</script>
</font>
</body>
</html>
<html>
<head><center>
<LINK REL="SHORTCUT ICON" HREF="http://www.freewebs.com/urbantrainz/favicon.ico">
<title>UrbanTrainz - Main page</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
image1 = new Image();
image1.src = "http://www.freewebs.com/urbantrainz/home2.png";
image2 = new Image();
image2.src = "http://www.freewebs.com/urbantrainz/projects2.png";'
image3 = new Image();
image3.src = "http://www.freewebs.com/urbantrainz/downloads2.png";
image4 = new Image();
image4.src = "http://www.freewebs.com/urbantrainz/forum2.png";
image5 = new Image();
image5.src = "http://www.freewebs.com/urbantrainz/chat2.png";
// End -->
</script>
<style type="text/css"> body { background-color:#ffffff; background-image:url(header.png); background-repeat: repeat-x; } div.nav-links a { float: left; text-decoration: none; } a.nav-home { background-image: url('http://www.freewebs.com/urbantrainz/home1.png'); height: 52px; width: 120px; display: block; border: 0px solid; } a.nav-home:hover { background-image: url('http://www.freewebs.com/urbantrainz/home2.png'); border: 0px solid; } a.nav-projects { background-image: url('http://www.freewebs.com/urbantrainz/projects1.png'); height: 52px; width: 193px; display: block; border: 0px solid; } a.nav-projects:hover { background-image: url('http://www.freewebs.com/urbantrainz/projects2.png'); border: 0px solid; } a.nav-LINK_NAME {
background-image: url('http://www.freewebs.com/urbantrainz/downloads1.png');
height: 52px;
width: 235px;
display: block;
border: 0px solid;
}
a.nav-LINK_NAME:hover {
background-image: url('http://www.freewebs.com/urbantrainz/downloads2.png');
border: 0px solid;
}
a.nav-LINK_NAME {
background-image: url('http://www.freewebs.com/urbantrainz/forum1.png');
height: 52px;
width: 139px;
display: block;
border: 0px solid;
}
a.nav-LINK_NAME:hover {
background-image: url('http://www.freewebs.com/urbantrainz/forum2.png');
border: 0px solid;
}
a.nav-LINK_NAME {
background-image: url('http://www.freewebs.com/urbantrainz/chat1.png');
height: 52px;
width: 101px;
display: block;
border: 0px solid;
}
a.nav-LINK_NAME:hover {
background-image: url('http://www.freewebs.com/urbantrainz/chat2.png');
border: 0px solid;
}</style>
<br><br><p></p><p></p><p></p>
<img src="logoonly.png">
</center>
</head>
<body>
<font face="Verdana">
<div class="nav-links"> <a class="nav-home" href="http://www.freewebs.com/urbantrainz/home.html"> </a> <a class="nav-projects" href="http://www.freewebs.com/urbantrainz/projects.html"> </a> </div> <br style="clear: left;" /> <a class="nav-downloads" href="http://www.freewebs.com/urbantrainz/downloads.html"> </a> <a class="nav-forum" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a> <a class="nav-chat" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a>
<br><br>
Sorry, this page is unavailable at the current time.<br><br>Reason: "maintenance"
<!-- Freewebs Sticker -->
<script language="JavaScript" src="http://images.freewebs.com/JS/Freebar/btn_angleblue.js">
</script>
</font>
</body>
</html>
You need to change the image2 line as well, look at your code, you have image2 listed 4 times:
image2 = new Image();
this needs to change also, to:
image1 = new Image();
image2 = new Image();
image3 = new Image();
image4 = new Image();
image5 = new Image();
image6 = new Image();
And so on for each image, so your HTML should be:
That should work...Code:<html> <head><center> <LINK REL="SHORTCUT ICON" HREF="http://www.freewebs.com/urbantrainz/favicon.ico"> <title>UrbanTrainz - Main page</title> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin image1 = new Image(); image1.src = "http://www.freewebs.com/urbantrainz/home2.png"; image2 = new Image(); image2.src = "http://www.freewebs.com/urbantrainz/projects2.png";' image3 = new Image(); image3.src = "http://www.freewebs.com/urbantrainz/downloads2.png"; image4 = new Image(); image4.src = "http://www.freewebs.com/urbantrainz/forum2.png"; image5 = new Image(); image5.src = "http://www.freewebs.com/urbantrainz/chat2.png"; // End --> </script> <style type="text/css"> body { background-color:#ffffff; background-image:url(header.png); background-repeat: repeat-x; } div.nav-links a { float: left; text-decoration: none; } a.nav-home { background-image: url('http://www.freewebs.com/urbantrainz/home1.png'); height: 52px; width: 120px; display: block; border: 0px solid; } a.nav-home:hover { background-image: url('http://www.freewebs.com/urbantrainz/home2.png'); border: 0px solid; } a.nav-projects { background-image: url('http://www.freewebs.com/urbantrainz/projects1.png'); height: 52px; width: 193px; display: block; border: 0px solid; } a.nav-projects:hover { background-image: url('http://www.freewebs.com/urbantrainz/projects2.png'); border: 0px solid; } a.nav-LINK_NAME { background-image: url('http://www.freewebs.com/urbantrainz/downloads1.png'); height: 52px; width: 235px; display: block; border: 0px solid; } a.nav-LINK_NAME:hover { background-image: url('http://www.freewebs.com/urbantrainz/downloads2.png'); border: 0px solid; } a.nav-LINK_NAME { background-image: url('http://www.freewebs.com/urbantrainz/forum1.png'); height: 52px; width: 139px; display: block; border: 0px solid; } a.nav-LINK_NAME:hover { background-image: url('http://www.freewebs.com/urbantrainz/forum2.png'); border: 0px solid; } a.nav-LINK_NAME { background-image: url('http://www.freewebs.com/urbantrainz/chat1.png'); height: 52px; width: 101px; display: block; border: 0px solid; } a.nav-LINK_NAME:hover { background-image: url('http://www.freewebs.com/urbantrainz/chat2.png'); border: 0px solid; }</style> <br><br><p></p><p></p><p></p> <img src="logoonly.png"> </center> </head> <body> <font face="Verdana"> <div class="nav-links"> <a class="nav-home" href="http://www.freewebs.com/urbantrainz/home.html"> </a> <a class="nav-projects" href="http://www.freewebs.com/urbantrainz/projects.html"> </a> </div> <br style="clear: left;" /> <a class="nav-downloads" href="http://www.freewebs.com/urbantrainz/downloads.html"> </a> <a class="nav-forum" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a> <a class="nav-chat" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a> <br><br> Sorry, this page is unavailable at the current time.<br><br>Reason: "maintenance" <!-- Freewebs Sticker --> <script language="JavaScript" src="http://images.freewebs.com/JS/Freebar/btn_angleblue.js"> </script> </font> </body> </html>
![]()
<html>
<head><center>
<LINK REL="SHORTCUT ICON" HREF="http://www.freewebs.com/urbantrainz/favicon.ico">
<title>UrbanTrainz - Main page</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
image1 = new Image();
image1.src = "http://www.freewebs.com/urbantrainz/home2.png";
image2 = new Image();
image2.src = "http://www.freewebs.com/urbantrainz/projects2.png";'
image3 = new Image();
image3.src = "http://www.freewebs.com/urbantrainz/downloads2.png";
image4 = new Image();
image4.src = "http://www.freewebs.com/urbantrainz/forum2.png";
image5 = new Image();
image5.src = "http://www.freewebs.com/urbantrainz/chat2.png";
// End -->
</script>
<style type="text/css"> body { background-color:#ffffff; background-image:url(header.png); background-repeat: repeat-x; } div.nav-links a { float: left; text-decoration: none; }
a.nav-home {
background-image: url('http://www.freewebs.com/urbantrainz/home1.png');
height: 52px;
width: 120px;
display: block;
border: 0px solid;
}
a.nav-home:hover {
background-image: url('http://www.freewebs.com/urbantrainz/home2.png');
border: 0px solid;
}
a.nav-projects {
background-image: url('http://www.freewebs.com/urbantrainz/projects1.png');
height: 52px;
width: 193px;
display: block;
border: 0px solid;
}
a.nav-projects:hover
background-image: url('http://www.freewebs.com/urbantrainz/projects2.png');
border: 0px solid; }
a.nav-downloads {
background-image: url('http://www.freewebs.com/urbantrainz/downloads1.png');
height: 52px;
width: 235px;
display: block;
border: 0px solid;
}
a.nav-downloads:hover {
background-image: url('http://www.freewebs.com/urbantrainz/downloads2.png');
border: 0px solid;
}
a.nav-forum {
background-image: url('http://www.freewebs.com/urbantrainz/forum1.png');
height: 52px;
width: 139px;
display: block;
border: 0px solid;
}
a.nav-forum:hover {
background-image: url('http://www.freewebs.com/urbantrainz/forum2.png');
border: 0px solid;
}
a.nav-chat {
background-image: url('http://www.freewebs.com/urbantrainz/chat1.png');
height: 52px;
width: 101px;
display: block;
border: 0px solid;
}
a.nav-chat:hover {
background-image: url('http://www.freewebs.com/urbantrainz/chat2.png');
border: 0px solid;
}</style>
<br><br><p></p><p></p><p></p>
<img src="logoonly.png">
</center>
</head>
<body>
<font face="Verdana">
<div class="nav-links"> <a class="nav-home" href="http://www.freewebs.com/urbantrainz/home.html"> </a> <a class="nav-projects" href="http://www.freewebs.com/urbantrainz/projects.html"> </a> </div> <br style="clear: left;" /> <a class="nav-downloads" href="http://www.freewebs.com/urbantrainz/downloads.html"> </a> <a class="nav-forum" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a> <a class="nav-chat" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a>
<br><br>
Sorry, this page is unavailable at the current time.<br><br>Reason: "maintenance"
<!-- Freewebs Sticker -->
<script language="JavaScript" src="http://images.freewebs.com/JS/Freebar/btn_angleblue.js">
</script>
</font>
</body>
</html>
<html>
<head><center>
<LINK REL="SHORTCUT ICON" HREF="http://www.freewebs.com/urbantrainz/favicon.ico">
<title>UrbanTrainz - Main page</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
image1 = new Image();
image1.src = "http://www.freewebs.com/urbantrainz/home2.png";
image2 = new Image();
image2.src = "http://www.freewebs.com/urbantrainz/projects2.png";'
image3 = new Image();
image3.src = "http://www.freewebs.com/urbantrainz/downloads2.png";
image4 = new Image();
image4.src = "http://www.freewebs.com/urbantrainz/forum2.png";
image5 = new Image();
image5.src = "http://www.freewebs.com/urbantrainz/chat2.png";
// End -->
</script>
<style type="text/css"> body { background-color:#ffffff; background-image:url(http://www.freewebs.com/urbantrainz/header.png); background-repeat: repeat-x; } div.nav-links a { float: left; text-decoration: none; }
a.nav-home {
background-image: url('http://www.freewebs.com/urbantrainz/home1.png');
height: 52px;
width: 120px;
display: linear;
border: 0px;
}
a.nav-home:hover {
background-image: url('http://www.freewebs.com/urbantrainz/home2.png');
display: linear;
}
a.nav-projects {
background-image: url('http://www.freewebs.com/urbantrainz/projects1.png');
height: 52px;
width: 193px;
display: linear;
border: 0px;
}
a.nav-projects:hover {
background-image: url('http://www.freewebs.com/urbantrainz/projects2.png');
display: linear;
}
a.nav-downloads {
background-image: url('http://www.freewebs.com/urbantrainz/downloads1.png');
height: 52px;
width: 235px;
display: linear;
border: 0px;
}
a.nav-downloads:hover {
background-image: url('http://www.freewebs.com/urbantrainz/downloads2.png');
display: linear;
}
a.nav-forum {
background-image: url('http://www.freewebs.com/urbantrainz/forum1.png');
height: 52px;
width: 139px;
display: linear;
border: 0px;
}
a.nav-forum:hover {
background-image: url('http://www.freewebs.com/urbantrainz/forum2.png');
display: linear;
}
a.nav-chat {
background-image: url('http://www.freewebs.com/urbantrainz/chat1.png');
height: 52px;
width: 101px;
display: linear;
border: 0px;
}
a.nav-chat:hover {
background-image: url('http://www.freewebs.com/urbantrainz/chat2.png');
display: linear;
}</style>
<br><br><p></p><p></p><p></p>
<img src="http://www.freewebs.com/urbantrainz/logoonly.png">
</center>
</head>
<body>
<font face="Verdana">
<div class="nav-links"> <a class="nav-home" href="<A href="http://www.freewebs.com/urbantrainz/home.html"> </a">http://www.freewebs.com/urbantrainz/home.html"> </a> <a class="nav-projects" href="<A href="http://www.freewebs.com/urbantrainz/projects.html"> </a">http://www.freewebs.com/urbantrainz/projects.html"> </a> </div> <br style="clear: left;" /> <a class="nav-downloads" href="<A href="http://www.freewebs.com/urbantrainz/downloads.html"> </a">http://www.freewebs.com/urbantrainz/downloads.html"> </a> <a class="nav-forum" href="<A href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a">http://www.freewebs.com/urbantrainz/404notfound.html"> </a> <a class="nav-chat" href="<A href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a">http://www.freewebs.com/urbantrainz/404notfound.html"> </a>
<br><br>
Sorry, this page is unavailable at the current time.<br><br>Reason: "maintenance"
<!-- Freewebs Sticker -->
<script language="JavaScript" src="http://images.freewebs.com/JS/Freebar/btn_angleblue.js">
</script>
</font>
</body>
</html>
<div class="nav-links"> <a class="nav-home" href="<A href="http://www.freewebs.com/urbantrainz/home.html"> </a">http://www.freewebs.com/urbantrainz/home.html"> </a>
<html>
<head>
<LINK REL="SHORTCUT ICON" HREF="http://www.freewebs.com/urbantrainz/favicon.ico">
<title>UrbanTrainz - Main page</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
image1 = new Image();
image1.src = "http://www.freewebs.com/urbantrainz/home2.png";
image2 = new Image();
image2.src = "http://www.freewebs.com/urbantrainz/projects2.png";'
image3 = new Image();
image3.src = "http://www.freewebs.com/urbantrainz/downloads2.png";
image4 = new Image();
image4.src = "http://www.freewebs.com/urbantrainz/forum2.png";
image5 = new Image();
image5.src = "http://www.freewebs.com/urbantrainz/chat2.png";
// End -->
</script>
<style type="text/css"> body { background-color:#ffffff; background-image:url(http://www.freewebs.com/urbantrainz/header.png); background-repeat: repeat-x; } div.nav-links a { float: left;
text-decoration: none; }
a.nav-home {
background-image: url('http://www.freewebs.com/urbantrainz/home1.png');
height: 52px;
width: 120px;
display: linear;
border: 0px;
}
a.nav-home:hover {
background-image: url('http://www.freewebs.com/urbantrainz/home2.png');
display: linear;
}
a.nav-projects {
background-image: url('http://www.freewebs.com/urbantrainz/projects1.png');
height: 52px;
width: 193px;
display: linear;
border: 0px;
}
a.nav-projects:hover {
background-image: url('http://www.freewebs.com/urbantrainz/projects2.png');
display: linear;
}
a.nav-downloads {
background-image: url('http://www.freewebs.com/urbantrainz/downloads1.png');
height: 52px;
width: 235px;
display: linear;
border: 0px;
}
a.nav-downloads:hover {
background-image: url('http://www.freewebs.com/urbantrainz/downloads2.png');
display: linear;
}
a.nav-forum {
background-image: url('http://www.freewebs.com/urbantrainz/forum1.png');
height: 52px;
width: 139px;
display: linear;
border: 0px;
}
a.nav-forum:hover {
background-image: url('http://www.freewebs.com/urbantrainz/forum2.png');
display: linear;
}
a.nav-chat {
background-image: url('http://www.freewebs.com/urbantrainz/chat1.png');
height: 52px;
width: 101px;
display: linear;
border: 0px;
}
a.nav-chat:hover {
background-image: url('http://www.freewebs.com/urbantrainz/chat2.png');
display: linear;
}
</style>
</head>
<body>
<font face="Verdana"><br><br>
<div align="center">
<img src="http://www.freewebs.com/urbantrainz/logoonly.png">
</div><br><br><br><br>
<div class="nav-links">
<a class="nav-home" href="http://www.freewebs.com/urbantrainz/home.html"> </a>
<a class="nav-projects" href="http://www.freewebs.com/urbantrainz/projects.html"> </a>
<a class="nav-downloads" href="http://www.freewebs.com/urbantrainz/downloads.html"> </a>
<a class="nav-forum" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a>
<a class="nav-chat" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a>
</div><br style="clear: left;" />
<br><br>
Sorry, this page is unavailable at the current time.<br><br>Reason: "maintenance"
<!-- Freewebs Sticker -->
<script language="JavaScript" src="http://images.freewebs.com/JS/Freebar/btn_angleblue.js">
</script>
</font>
</body>
</html>
<html>
<head>
<LINK REL="SHORTCUT ICON" HREF="http://www.freewebs.com/urbantrainz/favicon.ico">
<title>UrbanTrainz - Main page</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
image1 = new Image();
image1.src = "http://www.freewebs.com/urbantrainz/home2.png";
image2 = new Image();
image2.src = "http://www.freewebs.com/urbantrainz/projects2.png";'
image3 = new Image();
image3.src = "http://www.freewebs.com/urbantrainz/downloads2.png";
image4 = new Image();
image4.src = "http://www.freewebs.com/urbantrainz/forum2.png";
image5 = new Image();
image5.src = "http://www.freewebs.com/urbantrainz/chat2.png";
// End -->
</script>
<style type="text/css"> body { background-color:#ffffff; background-image:url(http://www.freewebs.com/urbantrainz/header.png); background-repeat: repeat-x; } div.nav-links a {
float: left; text-decoration: none; }
a.nav-home {
background-image: url('http://www.freewebs.com/urbantrainz/home1.png');
height: 52px;
width: 120px;
display: linear;
border: 0px;
}
a.nav-home:hover {
background-image: url('http://www.freewebs.com/urbantrainz/home2.png');
display: linear;
}
a.nav-projects {
background-image: url('http://www.freewebs.com/urbantrainz/projects1.png');
height: 52px;
width: 193px;
display: linear;
border: 0px;
}
a.nav-projects:hover {
background-image: url('http://www.freewebs.com/urbantrainz/projects2.png');
display: linear;
}
a.nav-downloads {
background-image: url('http://www.freewebs.com/urbantrainz/downloads1.png');
height: 52px;
width: 235px;
display: linear;
border: 0px;
}
a.nav-downloads:hover {
background-image: url('http://www.freewebs.com/urbantrainz/downloads2.png');
display: linear;
}
a.nav-forum {
background-image: url('http://www.freewebs.com/urbantrainz/forum1.png');
height: 52px;
width: 139px;
display: linear;
border: 0px;
}
a.nav-forum:hover {
background-image: url('http://www.freewebs.com/urbantrainz/forum2.png');
display: linear;
}
a.nav-chat {
background-image: url('http://www.freewebs.com/urbantrainz/chat1.png');
height: 52px;
width: 101px;
display: linear;
border: 0px;
}
a.nav-chat:hover {
background-image: url('http://www.freewebs.com/urbantrainz/chat2.png');
display: linear;
}
</style>
</head>
<body>
<font face="Verdana">
<div class="nav-links">
<a class="nav-home" href="http://www.freewebs.com/urbantrainz/home.html"> </a>
<a class="nav-projects" href="http://www.freewebs.com/urbantrainz/projects.html"> </a>
<a class="nav-downloads" href="http://www.freewebs.com/urbantrainz/downloads.html"> </a>
<a class="nav-forum" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a>
<a class="nav-chat" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a>
</div>
<br><br><br><br>
<div align=center>
<img src="http://www.freewebs.com/urbantrainz/logoonly.png">
</div>
<br style="clear: left;" />
<br><br>
Sorry, this page is unavailable at the current time.<br><br>Reason: "maintenance"
<!-- Freewebs Sticker -->
<script language="JavaScript" src="http://images.freewebs.com/JS/Freebar/btn_angleblue.js">
</script>
</font>
</body>
</html>
You will have to do some tweaking with the HTML, but this is as close as I can get to what you would like without going further in depth, will have a look further into it later tonight.
See what you think and tweak as needed...Code:<html> <head> <LINK REL="SHORTCUT ICON" HREF="http://www.freewebs.com/urbantrainz/favicon.ico"> <title>UrbanTrainz - Main page</title> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin image1 = new Image(); image1.src = "http://www.freewebs.com/urbantrainz/home2.png"; image2 = new Image(); image2.src = "http://www.freewebs.com/urbantrainz/projects2.png";' image3 = new Image(); image3.src = "http://www.freewebs.com/urbantrainz/downloads2.png"; image4 = new Image(); image4.src = "http://www.freewebs.com/urbantrainz/forum2.png"; image5 = new Image(); image5.src = "http://www.freewebs.com/urbantrainz/chat2.png"; // End --> </script> <style type="text/css"> body { background-color:#ffffff; background-image:url(http://www.freewebs.com/urbantrainz/header.png); background-repeat: repeat-x; } div.nav-links a { float: left; text-decoration: none; } a.nav-home { background-image: url('http://www.freewebs.com/urbantrainz/home1.png'); height: 52px; width: 120px; display: linear; border: 0px; } a.nav-home:hover { background-image: url('http://www.freewebs.com/urbantrainz/home2.png'); display: linear; } a.nav-projects { background-image: url('http://www.freewebs.com/urbantrainz/projects1.png'); height: 52px; width: 193px; display: linear; border: 0px; } a.nav-projects:hover { background-image: url('http://www.freewebs.com/urbantrainz/projects2.png'); display: linear; } a.nav-downloads { background-image: url('http://www.freewebs.com/urbantrainz/downloads1.png'); height: 52px; width: 235px; display: linear; border: 0px; } a.nav-downloads:hover { background-image: url('http://www.freewebs.com/urbantrainz/downloads2.png'); display: linear; } a.nav-forum { background-image: url('http://www.freewebs.com/urbantrainz/forum1.png'); height: 52px; width: 139px; display: linear; border: 0px; } a.nav-forum:hover { background-image: url('http://www.freewebs.com/urbantrainz/forum2.png'); display: linear; } a.nav-chat { background-image: url('http://www.freewebs.com/urbantrainz/chat1.png'); height: 52px; width: 101px; display: linear; border: 0px; } a.nav-chat:hover { background-image: url('http://www.freewebs.com/urbantrainz/chat2.png'); display: linear; } </style> </head> <body> <font face="Verdana"> <div class="nav-links"> <a class="nav-home" href="http://www.freewebs.com/urbantrainz/home.html"> </a> <a class="nav-projects" href="http://www.freewebs.com/urbantrainz/projects.html"> </a> <a class="nav-downloads" href="http://www.freewebs.com/urbantrainz/downloads.html"> </a> <a class="nav-forum" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a> <a class="nav-chat" href="http://www.freewebs.com/urbantrainz/404notfound.html"> </a> </div> <br><br><br><br> <div align=center> <img src="http://www.freewebs.com/urbantrainz/logoonly.png"> </div> <br style="clear: left;" /> <br><br> Sorry, this page is unavailable at the current time.<br><br>Reason: "maintenance" <!-- Freewebs Sticker --> <script language="JavaScript" src="http://images.freewebs.com/JS/Freebar/btn_angleblue.js"> </script> </font> </body> </html>
![]()