Website HTML

Status
Not open for further replies.
He responded man...

And I'm just about to start jumping around knowing that I actually HELPED! lol...

Thanks.

But, I still have a somewhat messed up site! I don't know how to get a site search feature in there the way I wanted, and the UrbanTrainz logo is too low. :confused:
 
Bump. Anyone know? Edit: Also, the mouse over images no longer load along with page load.
 
Last edited:
Hey guys

AussieNightcrawler has spent a lot of his personal time helping you out and he's a good man for it but really you should only go to the well so to speak only when you've exhausted your own resources. It's not like he has nothing better to do than constantly do your work for you. Have a little respect for him and all the hours he's put in trying to help you.

Cheers

AJ
 
Hey guys

AussieNightcrawler has spent a lot of his personal time helping you out and he's a good man for it but really you should only go to the well so to speak only when you've exhausted your own resources. It's not like he has nothing better to do than constantly do your work for you. Have a little respect for him and all the hours he's put in trying to help you.

Cheers

AJ

I have done my research, and I have thanked him (and SpawnofChaos).

I've built some of my own HTML to try and bring the logo back up, but itjust keeps breaking the page, which is driving me nuts. I'm stumped as to why the mouse over images no longer auto load with page load. The code is there! :eek:
 
I have done my research, and I have thanked him (and SpawnofChaos).

I've built some of my own HTML to try and bring the logo back up, but itjust keeps breaking the page, which is driving me nuts. I'm stumped as to why the mouse over images no longer auto load with page load. The code is there! :eek:


It still very much irks me (for a better choice of words!) why you seem to think we are here in this forum at your beck and call! Just see how many forum member's hours you have taken up so far with your "childish" requests for YOUR problems with Sketchup, just to name one program. Just because YOU do not seem to take the effort to learn and/or read up on it. Now you are at it again!

Why have you not read up on HTML code or web page publishing like many of us had to do when we build our web pages for our web site? This is where we got our information from, like from the InterNet. Or we bought some books (new or second hand from EBay or Amazon) to learn from.

Or why have you not used the Search function in Google? Where for example you could type in "Free web publishing" where you could get several FREE web publishing programs with which you build your web page visually like you would want it to be without ANY knowledge of any HTML code. Or try typing in about tutorials of what you are trying to do as there are gazillion tutorials available of most any program. Just try "GMax tutorials" in Google and see what comes up. You will be surprised!!!!!!!

We all had to learn too, often the hard way without someone pussyfooting us, so give as a bit of a break and YOU do some research first for a change on what you are working on BEFORE you jump into something you do not know. Why not find out for yourself first why something or other does not work by trial and error, we do it too, so why don't you do it for a while?

That way you will learn first of all HOW TO USE whatever program you are trying to use instead of crying like a spoiled brat and holler when it doesn't work! Has it ever dawned on you, most programs have a H E L P section or even a T U T O R I A L section included. It is about time you USE it.

In case you do not know what and why they are there for, let me spell it for you:

They give YOU help and tutor you in the use of said program(s). They also troubleshoot in case something goes wrong.

We are a helpful bunch here but it seems we are getting taken advantage of our help. OK?

Not so cheery this time.

VinnyBarb
 
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>
<div align=center>
<form method="get" action="http://www.google.com/search">
<table width="65%" border="0" cellpadding="0" align="right">
<tr>
	<td><div align="left"><img src="http://www.freewebs.com/urbantrainz/logoonly.png"></div></td>
	<td><div align="right"><input type="text"   name="q" size="30" maxlength="255" value="" />
		<input type="submit" value="Google Search" /></div></td>
</tr>
</table>
</form>
</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>

As I said before, it needs tweaking, not sure if the Google search will work, suprising what you find by googling, I got the html from another site.

As for the freewebs image, don't know as it does not actually show up, even on your uploaded version that I checked to make sure.

As for the preload images, as I said before, sometimes they work and sometimes not, depending on what browser your using.

To get it any better would require more time, then what I just did in about 15 - 20 minutes.



Now, back to the wagon I was looking at to get it to work correctly...
 
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>
<div align=center>
<form method="get" action="http://www.google.com/search">
<table width="65%" border="0" cellpadding="0" align="right">
<tr>
    <td><div align="left"><img src="http://www.freewebs.com/urbantrainz/logoonly.png"></div></td>
    <td><div align="right"><input type="text"   name="q" size="30" maxlength="255" value="" />
        <input type="submit" value="Google Search" /></div></td>
</tr>
</table>
</form>
</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>
As I said before, it needs tweaking, not sure if the Google search will work, suprising what you find by googling, I got the html from another site.

As for the freewebs image, don't know as it does not actually show up, even on your uploaded version that I checked to make sure.

As for the preload images, as I said before, sometimes they work and sometimes not, depending on what browser your using.

To get it any better would require more time, then what I just did in about 15 - 20 minutes.



Now, back to the wagon I was looking at to get it to work correctly...

Thanks. I was stumped on the Google search thing. I think I've found some script to make it search the site only. Need to test it. :) I also just dug up something that allows custom object positioning. Maybe I can do that for the freewebs logo... only concern is people that might have different browser sizes.

Cheers and happy new years. Good luck with that wagon. :wave:
 
Status
Not open for further replies.
Back
Top