Help with script

This is a discussion on "Help with script" within the Web Page Design section. This forum, and the thread "Help with script are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Closed Thread
 
LinkBack Thread Tools
  #1  
Old Feb 21st, 2004, 10:17
New Member
Join Date: Feb 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Help with script

Whats wrong with this CSS script?



a:link, a:active, a:visited {
color: #4B83B1;
font-size : 12;
Font-Family: Arial;
text-decoration: none}

a:hover {
color: #EDF3F9;
font-size : 12;
Font-Family: Arial;
text-decoration: none}

BODY {
scrollbar-arrow-color:#000000;
scrollbar-track-color:#FFFFFF;
scrollbar-shadow-color:#000000;
scrollbar-face-color:#FFFFFF;
scrollbar-highlight-color:#000000;
scrollbar-darkshadow-color:#FFFFFF;
scrollbar-3dlight-color:#FFFFFF}


FONT
{
color: #000000;
Font-Family: Arial}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!

  #2  
Old Feb 21st, 2004, 10:47
Rob's Avatar
Rob Rob is online now
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,182
Blog Entries: 7
Thanks: 27
Thanked 21 Times in 18 Posts
Absolutly nothing wrong with it except you need a measurement unit on the font size (ie. px) It is also much more code than it needs to be.

I would use the following:-

Code: Select all
a:link, a:active, a:visited {color: #4B83B1; text-decoration: none}

a:hover {color: #EDF3F9;}

BODY {
font-size : 12px; 
Font-Family: Arial;
scrollbar-arrow-color:#000000;
scrollbar-track-color:#FFFFFF;
scrollbar-shadow-color:#000000;
scrollbar-face-color:#FFFFFF;
scrollbar-highlight-color:#000000;
scrollbar-darkshadow-color:#FFFFFF;
scrollbar-3dlight-color:#FFFFFF}
If you specify font family and size in the body tag, then that will be the default for the entire document and so you can get rid of all your FONT tags (which is the beauty of CSS) as they are not needed.

Also, anything you specify for a:link will apply to all link types, so you don't need to set things that aint gonna change for a:hover

Hope this makes sense.
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old Feb 21st, 2004, 15:50
New Member
Join Date: Feb 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
<blockquote id="quote"><font size="1" face="geneva, verdana, arial" id="quote">quote:<hr height="1" noshade id="quote">Originally posted by Rob

Absolutly nothing wrong with it except you need a measurement unit on the font size (ie. px) It is also much more code than it needs to be.

I would use the following:-

Code: Select all
a:link, a:active, a:visited {color: #4B83B1; text-decoration: none}

a:hover {color: #EDF3F9;}

BODY {
font-size : 12px; 
Font-Family: Arial;
scrollbar-arrow-color:#000000;
scrollbar-track-color:#FFFFFF;
scrollbar-shadow-color:#000000;
scrollbar-face-color:#FFFFFF;
scrollbar-highlight-color:#000000;
scrollbar-darkshadow-color:#FFFFFF;
scrollbar-3dlight-color:#FFFFFF}
If you specify font family and size in the body tag, then that will be the default for the entire document and so you can get rid of all your FONT tags (which is the beauty of CSS) as they are not needed.

Also, anything you specify for a:link will apply to all link types, so you don't need to set things that aint gonna change for a:hover

Hope this makes sense.


<hr height="1" noshade id="quote"></blockquote id="quote"></font id="quote">



Thanks!

I use Dreamweaver....and im new on CSS.

Anyway i have downloaded a template, then I get this CSS code from the zipfile called >>mainstyls.css<<

.stylsheet {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
font-weight: bold;
color: #CCCCCC;
}
.orngtxt {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
font-weight: bold;
font-variant: normal;
text-transform: uppercase;
color: #FF9900;
}
.jmpmenu {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-style: normal;
color: #CCCCCC;
background-color: #57581E;
font-weight: bold;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;

}


I dont get it, how can i put it in the script? Its suppose to look like this:http://www.geocities.com/meetourdrummer/thetemplate.jpg




(confused :sad: )
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #4  
Old Feb 21st, 2004, 17:55
Up'n'Coming Member
Join Date: Oct 2003
Posts: 69
Thanks: 0
Thanked 0 Times in 0 Posts
You want to take all that CSS, and put it between this:

<style type="text/css">
<!--

and this:

-->
</style>

Then take all of that and put it in the header of your HTML document (between the <head> and </head> tags).

You could also put it in an external file, but that's a little more advanced
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #5  
Old Feb 21st, 2004, 21:07
New Member
Join Date: Feb 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Hmm...you mean like this?

it doesn´t work. :sad:

thanks anyway...


<html>
<head>
<style type="text/css">
<!--
.stylsheet {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
font-weight: bold;
color: #CCCCCC;
}
.orngtxt {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
font-weight: bold;
font-variant: normal;
text-transform: uppercase;
color: #FF9900;
}
.jmpmenu {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-style: normal;
color: #CCCCCC;
background-color: #57581E;
font-weight: bold;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;

}


-->
</style>




</body>
</html>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #6  
Old Feb 21st, 2004, 21:57
Up'n'Coming Member
Join Date: Oct 2003
Posts: 69
Thanks: 0
Thanked 0 Times in 0 Posts
Nope, your structure is completely wrong...

<html>
<head>
<style type="text/css">
<!--
.stylsheet {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
font-weight: bold;
color: #CCCCCC;
}
.orngtxt {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
font-weight: bold;
font-variant: normal;
text-transform: uppercase;
color: #FF9900;
}
.jmpmenu {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-style: normal;
color: #CCCCCC;
background-color: #57581E;
font-weight: bold;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;

}


-->
</style>
</head>
<body>



</body>
</html>

That alone will not do anything. You need to write the HTML to use the CSS.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #7  
Old Feb 21st, 2004, 22:15
New Member
Join Date: Feb 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Ok! I think I see your point... maybe



One question left then...


If the html code for the CSS code is:

<html>
<head>

<title>WebDesignHelper.co.uk - Page Template 80</title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="description" content="FW MX DW MX HTML">

<script language="JavaScript">
<!--
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
/* Functions that swaps down images. */
function MM_nbGroup(event, grpName) { //v6.0
var i,img,nbArr,args=MM_nbGroup.arguments;
if (event == "init" && args.length > 2) {
if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
nbArr[nbArr.length] = img;
for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
if (!img.MM_up) img.MM_up = img.src;
img.src = img.MM_dn = args[i+1];
nbArr[nbArr.length] = img;
} }
} else if (event == "over") {
document.MM_nbOver = nbArr = new Array();
for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
if (!img.MM_up) img.MM_up = img.src;
img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])?args[i+1] : img.MM_up);
nbArr[nbArr.length] = img;
}
} else if (event == "out" ) {
for (i=0; i < document.MM_nbOver.length; i++) { img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
} else if (event == "down") {
nbArr = document[grpName];
if (nbArr) for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
document[grpName] = nbArr = new Array();
for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
if (!img.MM_up) img.MM_up = img.src;
img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
nbArr[nbArr.length] = img;
} }
}

/* Functions that handle preload. */
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

//-->
</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<meta http-equiv="imagetoolbar" content="no">

<link href="mainstyls.css" rel="stylesheet" type="text/css">

</head>

<body bgcolor="#56581d" topmargin="5" marginheight="5" onLoad="MM_preloadImages('images/index_r5_c2_f2.jpg','images/index_r5_c2_f4.jpg','images/index_r5_c2_f3.jpg','images/index_r5_c3_f2.jpg','images/index_r5_c3_f4.jpg','images/index_r5_c3_f3.jpg','images/index_r5_c4_f2.jpg','images/index_r5_c4_f4.jpg','images/index_r5_c4_f3.jpg','images/index_r5_c5_f2.jpg','images/index_r5_c5_f4.jpg','images/index_r5_c5_f3.jpg','images/index_r5_c6_f2.jpg','images/index_r5_c6_f4.jpg','images/index_r5_c6_f3.jpg');">

<script language="JavaScript">
var msg="Right Click Disabled!";
function disableIE() {if (document.all) {alert(msg);return false;}
}
function disableNS(e) {
if (document.layers||(document.getElementById&&!docum ent.all)) {
if (e.which==2||e.which==3) {alert(msg);return false;}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);document.o nmousedown=disableNS;
} else {
document.onmouseup=disableNS;document.oncontextmen u=disableIE;
}
document.oncontextmenu=new Function("alert(msg);return false")
</script>

<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="651">
<tr>

<td colspan="6">[img]images/index_r1_c1.jpg[/img]</td>
</tr>
<tr>

<td colspan="6">[img]images/index_r2_c1.jpg[/img]</td>
</tr>
<tr>

<td colspan="6">[img]images/index_r3_c1.jpg[/img]</td>
</tr>
<tr>

<td colspan="6">[img]images/index_r4_c1.jpg[/img]</td>
</tr>
<tr width=651>

<td>[img]images/index_r5_c1.jpg[/img]</td>
<td>[img]images/index_r5_c2.jpg[/img]</td>
<td>[img]images/index_r5_c3.jpg[/img]</td>
<td>[img]images/index_r5_c4.jpg[/img]</td>
<td>[img]images/index_r5_c5.jpg[/img]</td>
<td>[img]images/index_r5_c6.jpg[/img]</td>
</tr>
<tr>

<td colspan="6" valign="top" background="images/index_r6_c1.jpg" class="stylsheet" width=651><blockquote>


<span class="orngtxt">

.:: main page ::.</span>



<span class="orngtxt">heading 1</span>



Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam
nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat
volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation
ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse
molestie consequat, vel illum dolore eu feugiat nulla facilisis at
vero eros et accumsan et iusto odio dignissim qui blandit praesent
luptatum zzril delenit.



<span class="orngtxt">heading 2</span>



Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam
nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat
volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation
ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse
molestie consequat, vel illum dolore eu feugiat nulla facilisis at
vero eros et accumsan et iusto odio dignissim qui blandit praesent
luptatum zzril delenit.



<span class="orngtxt">heading 3</span>



Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam
nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat
volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation
ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse
molestie consequat, vel illum dolore eu feugiat nulla facilisis at
vero eros et accumsan et iusto odio dignissim qui blandit praesent
luptatum zzril delenit.



<span class="orngtxt">heading 4</span>

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam
nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat
volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation
ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse
molestie consequat, vel illum dolore eu feugiat nulla facilisis at
vero eros et accumsan et iusto odio dignissim qui blandit praesent
luptatum zzril delenit.





</p>
</blockquote></td>
</tr>
<tr width=651>
<td colspan="6" background="images/index_r8_c1.jpg" height=29></td>
</tr>
<tr>
<td colspan=6><center><font color="#999999" size="1" face="Verdana, Arial, Helvetica, sans-serif">This template is designed by
<font color="#000000">cotterjerry@eircom.net</font>
and supplied by <font color="#000000">WebDesignHelper.co.uk</font></font></center>

</td>
</tr>
</table>

</div>
</body>
</html>



Then....where should i put the CSS code?

(sorry..)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #8  
Old Feb 22nd, 2004, 06:46
Up'n'Coming Member
Join Date: Oct 2003
Posts: 69
Thanks: 0
Thanked 0 Times in 0 Posts
Open mainstyls.css, and copy and paste the CSS you posted earlier. That should do it
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #9  
Old Feb 22nd, 2004, 13:30
New Member
Join Date: Feb 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Mmkay. Well i have tried and tried and i have asked around...but no one knows(been asking around in other forums, no one answers except here).

So this is what I have came up to:


When i look at the index.html file that i get from the zipfile it look likes this:
http://illusivedesign.org/preview.php?id=206



The html-code i get when i copy the source from index.html is:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>

<meta NAME="description" CONTENT="Your site description here.">
<meta NAME="keywords" CONTENT="Your site keywords here.">
<meta name="revisit-after" content="4days">
<meta name="robots" content="index,follow">

<title>- Supreme Template 2</title>

<script language="JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>

<link rel="stylesheet" href="style1.css" type="text/css" media="screen">
<script type="text/javascript" src="mover.js"></script>
</head>

<body bgcolor="#000000" marginwidth="5" marginheight="5" leftmargin="5" topmargin="5">

<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr>
<td align="center" valign="top">
<table width="730" border="0" cellpadding="0" cellspacing="0"><tr>
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>[img]images/temp3_01.gif[/img]</td>
<td>[img]images/temp3_02.gif[/img]</td>
<td>[img]images/temp3_03.gif[/img]</td>
<td>[img]images/temp3_04.gif[/img]</td>
</tr>

<tr>
<td rowspan="5">[img]images/temp3_05.gif[/img]</td>
<td rowspan="5">[img]images/temp3_06.gif[/img]</td>
<td>[img]images/butt_home.gif[/img]</td>
<td rowspan="5">[img]images/temp3_08.gif[/img]</td>
</tr>

<tr>
<td>[img]images/butt_company.gif[/img]</td>
</tr>

<tr>
<td>[img]images/butt_products.gif[/img]</td>
</tr>

<tr>
<td>[img]images/butt_services.gif[/img]</td>
</tr>

<tr>
<td>[img]images/butt_contact.gif[/img]</td>
</tr>
</table>
</td>
</tr><tr>
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>[img]images/temp3_13.gif[/img]</td>
<td>[img]images/temp3_14.gif[/img]</td>
<td>[img]images/temp3_15.gif[/img]</td>
</tr>

<tr>
<td>[img]images/temp3_16.gif[/img]</td>
<td>[img]images/spacer.gif[/img]</td>
<td>[img]images/temp3_18.gif[/img]</td>
</tr>

<tr>
<td>[img]images/temp3_19.gif[/img]</td>
<td width="283" height="17" class="title">WELCOME TO CHEMICAL BURN</td>
<td>[img]images/temp3_21.gif[/img]</td>
</tr>
</table>
</td>
</tr><tr>
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0"><tr>
<td width="194" height="310" valign="top">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr>
<td background="images/bg_sidepanel.gif" align="center" valign="top">
<table border="0" cellpadding="0" cellspacing="0"><tr>
<td colspan="2" background="images/bg_pan_title.gif" width="194" height="20" class="pan_title">
[img]images/spacer.gif[/img]MEMBERS AREA</td>
</tr><tr><td>[img]images/spacer.gif[/img]</td>
<td class="pan">user name:
<input name="text" type="text" style="height:20px; width:150px;"></td>
</tr><tr><td>[img]images/spacer.gif[/img]</td>
<td class="pan">password:
<input name="text" type="text" style="height:20px; width:150px;"></td>
</tr><tr><td>[img]images/spacer.gif[/img]</td>
<td><input type="image" src="images/butt_login.jpg"></td></tr></table>


<table border="0" cellpadding="0" cellspacing="0"><tr>
<td colspan="2" background="images/bg_pan_title.gif" width="194" height="20" class="pan_title">
[img]images/spacer.gif[/img]OUR SPONCORS</td>
</tr><tr><td>[img]images/spacer.gif[/img]</td>
<td class="pan"><a href="http://supremetemplates.com" target="_blank">
[img]images/supreme_88x31.gif[/img]</a>

<a href="http://supremetemplates.com" target="_blank">
[img]images/supreme_88x31.gif[/img]</a>

<a href="http://supremetemplates.com" target="_blank">
[img]images/supreme_88x31.gif[/img]</a>

[img]images/butt_more.jpg[/img]</td></tr></table>


</td></tr><tr>
<td valign="top" height="38">
[img]images/pan_bottom.gif[/img]
</td></tr></table>
</td>
<td width="536" height="310" valign="top">
<table width="536" border="0" cellpadding="0" cellspacing="0"><tr>
<td>[img]images/con_area_01.gif[/img]</td>
<td>[img]images/con_area_02.gif[/img]</td>
<td><a href="#" onMouseover="moveup()" onMouseout="clearTimeout(moveupvar)">
[img]images/butt_up.gif[/img]</a></td>
</tr><tr>
<td>[img]images/con_area_04.gif[/img]</td>
<td width="500" height="250" valign="top">

<script language="JavaScript1.2">
iens6=document.all||document.getElementById
ns4=document.layers

//specify speed of scroll (greater=faster)
var speed=5

if (iens6){
document.write('<div id="container" style="position:relative;width:495;height:245;bord er:0px solid white;overflow:hidden">')
document.write('<div id="content" style="position:absolute;width:495;left:0;top:0">' )
}
</script>

<ilayer name="nscontainer" width=490 height=240 clip="0,0,175,160">
<layer name="nscontent" width=490 height=240 visibility=hidden>


[img]images/blank.jpg[/img]

This Template is provided for free by Supreme Templates.com.



<font size="2" color="#ffffff">In order for you to use this template free you have to
provide a link back to our site
</font>
<font size="2">Supreme Templates.com</font>.



This template comes with all the HTML & images. It's totally set up and ready to go! If you would like to remove the link
back that keeps this template free we charge a $20 licences fee to use it without the link back. You can pay this fee
through <a href="https://www.paypal.com/xclick/business=deonya24%40yahoo.com&item_name=Supreme+Te mplate+Licence&item_number=Supreme+Temp3&amount=20 .00&return=http%3A//www.supremetemplates.com&cancel_return=http%3A//www.supremetemplates.com&currency_code=USD" target="_blank">
Pay Pal</a>. Our Pay Pal email is deonya24@yahoo.com in the subject
line include this (Supreme Temp3 / Remove Link Please). On receiving payment we will also send you the original design file
[Adobe Photoshop .psd] in a zip file to the address that you give us, make sure its a working email add. we will only
send it once.

<center>

<font size="2" color="#ffffff">Log online & click the buy now button
to buy a licence for this template!
</font>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="deonya24@yahoo.com">
<input type="hidden" name="item_name" value="Supreme Template Licence">
<input type="hidden" name="item_number" value="Supreme Temp3">
<input type="hidden" name="amount" value="20.00">
<input type="hidden" name="return" value="http://www.supremetemplates.com">
<input type="hidden" name="cancel_return" value="http://www.supremetemplates.com">
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypal.com/images/x-click-but23.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>



Thanks for your support, please visit us soon!


<a href="http://supremetemplates.com" target="_blank"
onMouseOver="window.status='Visit Supreme Templates we have the largest selection of templates on the net.'; return true;"
onMouseOut="window.status=''; return true;">
[img]images/supreme_88x31.gif[/img]</a></center>


</layer>
</ilayer>

<script language="JavaScript1.2">
if (iens6)
document.write('</div></div>')
</script>

<script language="JavaScript1.2">
if (iens6){
var crossobj=document.getElementById? document.getElementById("content") : document.all.content
var contentheight=crossobj.offsetHeight
}
else if (ns4){
var crossobj=document.nscontainer.document.nscontent
var contentheight=crossobj.clip.height
}

function movedown(){
if (iens6&&parseInt(crossobj.style.top)>=(contentheig ht*(-1)+100))
crossobj.style.top=parseInt(crossobj.style.top)-speed
else if (ns4&&crossobj.top>=(contentheight*(-1)+100))
crossobj.top-=speed
movedownvar=setTimeout("movedown()",20)
}

function moveup(){
if (iens6&&parseInt(crossobj.style.top)<=0)
crossobj.style.top=parseInt(crossobj.style.top)+sp eed
else if (ns4&&crossobj.top<=0)
crossobj.top+=speed
moveupvar=setTimeout("moveup()",20)

}

function getcontent_height(){
if (iens6)
contentheight=crossobj.offsetHeight
else if (ns4)
document.nscontainer.document.nscontent.visibility ="show"
}
window.onload=getcontent_height
</script>

</td>
<td>[img]images/con_area_06.gif[/img]</td>
</tr><tr>
<td>[img]images/con_area_07.gif[/img]</td>
<td>[img]images/con_area_08.gif[/img]</td>
<td>[img]images/con_area_09.gif[/img]</td>
</tr><tr>
<td>[img]images/con_area_10.gif[/img]</td>
<td width="500" height="20" align="center">

HOME |
COMPANY |
PRODUCTS |
SERVICES |
CONTACT

</td>
<td><a href="#" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)">
[img]images/butt_down.gif[/img]</a></td>
</tr><tr>
<td colspan="2">[img]images/con_area_13.gif[/img]</td>
<td>[img]images/con_area_14.gif[/img]</td>
</tr></table>

</td>
</tr>
</table>
</td>
</tr><tr>
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>[img]images/temp3_24.gif[/img]</td>
<td>[img]images/temp3_25.gif[/img]</td>
<td>[img]images/temp3_26.gif[/img]</td>
</tr></table>
</td></tr></table>
</td></tr></table>
<center>

<font size="1">
&copy; Copyright 2003 <font size="1">SupremeTemplates.com</font>
All Rights Reserved.</font>
</center>
</body>
</html>





But when i paste the html code in my geocities it looks like this:http://www.geocities.com/meetourdrummer/templatewrong.html



Whats wrong? How can i use the template? I dont understand..

Thanks alot again!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #10  
Old Feb 22nd, 2004, 15:03
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
Have you uploaded the images? and if so, did you upload them into a directory called images? If not that could be a problem, I didn't find the images your requesting on your server though.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #11  
Old Feb 22nd, 2004, 15:56
New Member
Join Date: Feb 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Hmm...nope...well i have the files stored on my computer http://www.geocities.com/meetourdrummer/imagespix.jpg , the folder is called images....should i upload them on geocities?

i have dreamweaver, can I maybe use it instead to edit?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #12  
Old Feb 22nd, 2004, 16:09
New Member
Join Date: Feb 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
(the images is stored in my computer) heres the adress again:http://www.geocities.com/meetourdrummer/image.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread

Tags
help, script

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help with this script korvix JavaScript Forum 1 May 28th, 2008 23:00
i need help with a FMS script taietel Flash & Multimedia Forum 1 Apr 6th, 2007 14:56
Asp script tolis Classic ASP 0 Feb 3rd, 2007 13:28
Changes to CSS script Accurax Web Page Design 6 Dec 17th, 2006 16:36


All times are GMT. The time now is 21:56.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved