HomemadeTurbo - DIY Turbo Forum

HomemadeTurbo - DIY Turbo Forum (https://www.homemadeturbo.com/)
-   General Discussion (https://www.homemadeturbo.com/general-discussion-6/)
-   -   html codes (https://www.homemadeturbo.com/general-discussion-6/html-codes-34216/)

B16aJunkY 01-30-2005 09:31 AM

html codes
 
anyone know the html code to keep the word the same color after they click on it?

RNPoo7 01-30-2005 09:33 AM

Re:html codes
 
<BODY VLINK = Color... >

bambooseven 01-30-2005 09:40 AM

Re:html codes
 
ehhh, he means....

<BODY LINK="color" ALINK="(the same)color" VLINK="(the same)color">
</BODY>

B16aJunkY 01-30-2005 09:40 AM

Re:html codes
 
and where would i put it? at the top?

bambooseven 01-30-2005 09:47 AM

Re:html codes
 
in the body tags that SHOULD already be there.

bambooseven 01-30-2005 09:48 AM

Re:html codes
 
post your code and I'll show you how to fix it.

B16aJunkY 01-30-2005 11:24 AM

Re:html codes
 
here's the hole code of the page.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
</head>

<body bgcolor="#006699" text="#000000" link="#000000">
<table width="70%" border="0" align="center">
<tr>
<td><img src="banner.jpg" width="800" height="230" align="absmiddle"></td>
</tr>
</table>
<p>&nbsp;</p>
<table width="7%" height="102" border="1" align="left" bordercolor="#000000" bgcolor="#CCCCCC">
<tr>
<td><a href="http://www.deadz0ne.com">Home</a></td>
</tr>
<tr>
<td><a href="http://www.deadz0ne.com/forum/">Forums</a></td>
</tr>
<tr>
<td><a href="http://www.deadz0ne.com/server.htm">Server</a></td>
</tr>
<tr>
<td><a href="http://www.deadz0ne.com/download.htm">Download</a></td>
</tr>
</table>
<table width="25%" height="150" border="1" align="center">
<tr>
<td height="26" align="center" valign="middle">News</td>
</tr>
<tr>
<td align="center" valign="middle">Welcome to Deadz0ne.com please feel free
to register on the fourms and get to know the admins on the server. As you
can tell the webpage is not fully up and runing so please feel free to look
in the forums for all info for the server and renting admin.</td>
</tr>
</table>
<p>&nbsp;</p>
</body>
</html>

HondaTuner 01-30-2005 11:43 AM

Re:html codes
 
Not going to fix that one part since I forget how to do it, but I fixed the rest of it:


<html>
<head>
<title>Untitled Document</title>
</head>
<body bgcolor="#006699" text="#000000" link="#000000">
<table width="70%" border="0" align="center">
<tr>
<td><img src="banner.jpg" width="800" height="230" align="absmiddle"></td>
</tr>
</table>
<p>&nbsp;</p>
<table width="7%" height="102" border="1" align="left" bordercolor="#000000" bgcolor="#CCCCCC">
<tr>
<td><a href="http://www.deadz0ne.com">Home</a></td>
</tr>
<tr>
<td><a href="http://www.deadz0ne.com/forum/">Forums</a></td>
</tr>
<tr>
<td><a href="http://www.deadz0ne.com/server.htm">Server</a></td>
</tr>
<tr>
<td><a href="http://www.deadz0ne.com/download.htm">Download</a></td>
</tr>
</table>
<table width="25%" height="150" border="1" align="center">
<tr>
<td height="26" align="center" valign="middle">News</td>
</tr>
<tr>
<td align="center" valign="middle">Welcome to Deadz0ne.com please feel free
to register on the forums and get to know the admins on the server. As you
can tell the webpage is not fully up and running so please feel free to look
in the forums for all info for the server and renting admin.</td>
</tr>
</table>
<p>&nbsp;</p>
</body>
</html>


Just fixed a few small things for ya. ;)

B16aJunkY 01-30-2005 11:58 AM

Re:html codes
 
thanks! is there any way to get the underline out to?

bambooseven 01-30-2005 07:35 PM

Re:html codes
 
There, no underlines, all the same color. anything else you need? (BTW CSS PwNs JoO)

<html>
<head>
<title>Untitled Document</title>
<STYLE type="text/css">
<!--
A { text-decoration:none }
-->
</STYLE>
</head>
<body bgcolor="#006699" text="#000000" link="#000000" alink="#000000" vlink="#000000">
<table width="70%" border="0" align="center">
<tr>
<td><img src="banner.jpg" width="800" height="230" align="absmiddle"></td>
</tr>
</table>
<p>&nbsp;</p>
<table width="7%" height="102" border="1" align="left" bordercolor="#000000" bgcolor="#CCCCCC">
<tr>
<td><a href="http://www.deadz0ne.com">Home</a></td>
</tr>
<tr>
<td><a href="http://www.deadz0ne.com/forum/">Forums</a></td>
</tr>
<tr>
<td><a href="http://www.deadz0ne.com/server.htm">Server</a></td>
</tr>
<tr>
<td><a href="http://www.deadz0ne.com/download.htm">Download</a></td>
</tr>
</table>
<table width="25%" height="150" border="1" align="center">
<tr>
<td height="26" align="center" valign="middle">News</td>
</tr>
<tr>
<td align="center" valign="middle">Welcome to Deadz0ne.com please feel free
to register on the forums and get to know the admins on the server. As you
can tell the webpage is not fully up and running so please feel free to look
in the forums for all info for the server and renting admin.</td>
</tr>
</table>
<p>&nbsp;</p>
</body>
</html>

bambooseven 01-31-2005 11:23 PM

Re:html codes
 
how did it work?

yellowcrx6 01-31-2005 11:32 PM

Re:html codes
 
hey heres a questionm,. im drunk so ill read this in thie morning... but anyway.... i cant control the background of my computer (i got some virus/adware/spyware... but got rid of most of it) . i can acess the html cod, so i put in "hi". right now its a blank whote screen with hi in the top right corner. i have no idea how to work with it, so if soome onde could e make me a cool background in htmel that would be cool.


All times are GMT -5. The time now is 10:37 PM.


© 2024 MH Sub I, LLC dba Internet Brands