 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
jason102178
Joined: 15 May 2008 Posts: 40 Location: Ohio
|
Posted: Tue Aug 19, 2008 1:50 am need help with website |
|
|
|
if anyone is anble to help me i would really appreciate it... here is my situation i use to host my website with a free service called insightbb.com then i bought a domain name and hosting account with godaddy and everything fell apart it seemed like nothing is working out the way i want i had to redo alot of things and now im lost
number 1 my favicon.ico file is not working ive tried placeing it everywere including the head of the html
number 2 on the flash intro of my website it works fine when i go to my website on the tabs it usually tells the name i wanted the tab to say jasons homepage and then when it directs you into my website all it says is http://html is all you can see and ive put the tag <TITLE>Jasons Homepage></TITLE> in the html and still not working.
number 3 i can not get realplayer to load in firefox it just keeps saying mising plugin please install then i click install and it says no avaible plugins and in internet explorer it works just fine
my webstite address is www.jaysonberger.com |
|
PayneLess Designs

Joined: 28 Feb 2007 Posts: 1390 Location: Biloxi, MS
|
Posted: Tue Aug 19, 2008 4:11 am Re: need help with website |
|
|
|
| jason102178 wrote: |
number 1 my favicon.ico file is not working ive tried placeing it everywere including the head of the html
You're favicon shows ok in Firefox. It's a problem with IE and related engine driven browsers. Try saving your own page to favorites so IE stores the Icon. If you run Disk Cleaner or clear Cache and Temp Internet Files, you'll lose the favicon and will have to restore. Your link to favicon should be on main frame page (index.html) between the head tags.
number 2 on the flash intro of my website it works fine when i go to my website on the tabs it usually tells the name i wanted the tab to say jasons homepage and then when it directs you into my website all it says is http://html is all you can see and ive put the tag <TITLE>Jasons Homepage></TITLE> in the html and still not working.
What's with the ">" after Homepage? It's on all frame pages.
This has to be corrected:
| Code: |
| </head><frameset cols="100%" rows="70,*" border="0" frameborder="0" framespacing="0"><frame name="top" src="top.html" marginwidth="0" marginheight="0" scrolling="NO"frameborder="no" noresize> <frameset cols="159,*" border="0" frameborder="0" framespacing="0"><frame name="left" src="left.html" marginwidth="0" marginheight="0" scrolling="auto"frameborder="no" noresize><frame name="main" src="main.html" marginwidth="0" marginheight="0" scrolling="auto"frameborder="no" noresize> </frameset></frameset> </head></html> |
Remove </head> at beginning as it is a closing tag. You must use a frameset document type:
| Code: |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> |
Rest of frame page should be similar to this:
| Code: |
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Your Page Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="keywords" content="Your keywords." />
<meta http-equiv="description" content="Description of page." />
<link href="Your_style_file.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/x-icon" href="http://Domain_Name.com/imgs/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="http://Domain_Name.com/imgs/favicon.ico" />
</head>
<frameset cols="100%" rows="255,*">
<frame name="header" src="index2_fr1.html" scrolling="no" frameborder="0" noresize="noresize" />
<frame name="content" src="index2_fr2.html" scrolling="auto" frameborder="0" noresize="noresize" />
</frameset></html> |
Just modify to set up your other frames.
number 3 i can not get realplayer to load in firefox it just keeps saying mising plugin please install then i click install and it says no avaible plugins and in internet explorer it works just fine
You need to go to Mozill's plug-in and install RealPlayer for Firefox. BTW, I refuse to use RealPlayer because of the malware problem and many people are not going to see the media using it. I would reformat all media to a more popular format that can be played by media players people will have. This (http://www.jaysonberger.com/everytime.rm) is the one I take it?
my webstite address is www.jaysonberger.com |
Didn't see a skip button or text link on Intro. Just clicked on double arrow which is mis-leading. Option to skip Intro should be made obvious and up front before it begins. Irritating to have to wait to find out about the information. Your http://www.jaysonberger.com/index2.html page header image "Welcome" needs the container resized as full size image is not showing.
Please validate your pages for code errors:
CSS Code
HTML CODE |
|
sticks464

Joined: 31 Dec 2006 Posts: 1282
|
Posted: Tue Aug 19, 2008 6:17 am |
|
|
|
This is how your mainframe page should be coded.
Put this in your underbody.css file. Delete all previous entries on this page to include the opening tag <style type="text/css"> and the closing tag </style>, they are not needed , only the entries below.
CSS
| Code: |
body {
background: #000 url(background.png);
font-family: "Batang", Arial, Helvetica, sans-serif;
font-size: 1em;
}
#content {
color: gray;
padding: 20px;
text-align: center;
line-height: 1.5;
}
#content p {margin-bottom: 10px; text-indent:20px;}
#content p.first {text-indent:0px;}
#footer {
font-family: Arial, Helvetica, sans-serif;
text-align:center;
color: gray;
font-size:80%;
} |
Then your homepage should look like this
| Code: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Site-Exit" content="revealTrans(Duration=3.0,Transition=23)">
<title>Jasons Homepage</title>
<link rel=stylesheet href="underbody.css" type="text/css">
<script type="text/javascript">
<!-- Begin Script
//Display Time of last visit script- Mattias Sjoberg
//Modified by JavaScript Kit (http://javascriptkit.com)
//Visit http://javascriptkit.com for this script
var expDays = 30;
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
function When(info){
// When
var rightNow = new Date()
var WWHTime = 0;
WWHTime = GetCookie('WWhenH')
WWHTime = WWHTime * 1
var lastHereFormatting = new Date(WWHTime); // Date-i-fy that number
var intLastVisit = (lastHereFormatting.getYear() * 10000)+(lastHereFormatting.getMonth() * 100) + lastHereFormatting.getDate()
var lastHereInDateFormat = "" + lastHereFormatting; // Gotta use substring functions
var dayOfWeek = lastHereInDateFormat.substring(0,3)
var dateMonth = lastHereInDateFormat.substring(4,10)
var hours = "" + lastHereFormatting.getHours()
var year = lastHereFormatting.getYear()
if (year < 1000) year+=1900
var minutes = "" + lastHereFormatting.getMinutes()
if (minutes.substring(0,1) == minutes){
minutes = "0" + minutes
}
var WWHText = dayOfWeek + ", " + dateMonth + " " + year + " at " + hours + ":" + minutes// display
SetCookie ("WWhenH", rightNow.getTime(), exp)
return WWHText;
}
function Count(info){
var psj=0;
// How many times
var WWHCount = GetCookie('WWHCount')
if (WWHCount == null) {
WWHCount = 0;
}
else{
WWHCount++;
}
SetCookie ('WWHCount', WWHCount, exp);
return WWHCount+1;
}
function set(){
// VisitorName = prompt("Who are you?", "Nada");
// SetCookie ('VisitorName', VisitorName, exp);
SetCookie ('WWHCount', 0, exp);
SetCookie ('WWhenH', 0, exp);
}
function getCookieVal (offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() - 1);
// This cookie is history
var cval = GetCookie (name);
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}
// End Script -->
</script>
<script type="text/javascript">
function change_bgcolor(icolor) {
document.bgColor= icolor;
}
</script>
<script type="text/javascript">
<!-- Hide from older browsers
alert('Hey Guys thanks for taking the time to look at my site......My site is currently undergoing construction so please keep checking back...and sign my guest book as well....I just added this new song it has so much meaning to it....its how I feel when I am involved with someone, also under the links page click on the banner at the top for live gay radio.'); // end hiding -->
</script>
<script type="text/javascript">
<!--
//Disable right mouse click Script
//By Maximus (maximusatnsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message="2003-2008 Jasons Webpage- All Rights Reserved.";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script>
<script type="text/javascript">
var text1="J A S O N ' S * H O M E P A G E "
comeback=0
cometo=0
function dis(){
window.status=text1.substring(0,cometo)
if(comeback==1){
cometo--;
if(cometo==0){comeback=0}
} else {cometo++;if(cometo==text1.length){comeback=1}}
window.status=text1.substring(0,cometo)+""
if(cometo==text1.length){window.setTimeout("dis()",500);} else {window.setTimeout("dis()",5);}
}
dis()
</script>
</head>
<body>
<div id="content">
<p><a target="_blank" href="picture.jpg"><img height=100 width=100 src="picture_small.jpg" border=2 xthumbnail-orig-image="picture.jpg" ></a></p>
<p><A HREF="javascript:change_bgcolor('white')">Click Here to change background color to white</A></p>
<p class="first">Hey everyone just incase you don't know who I am my name is Jason, I am 29 Im originally from a town called
Morenci Michigan, & I moved to Louisville Kentucky were I have lived for almost 3 years
now. and then I movd to Toledo Ohio were i am right now I am 5' 11" & weigh 160lbs.
If ya want to know more about me feel free to ask. I am a very easy and outgoing guy I
don't like drama or any of that bull crap. I also enjoy jet skiing and camping as well.</p>
<p>Well don't forget to sign my guest book below ok. Well thank you for visiting my web site
I will update it periodically. This is the first time I have done one its pretty hard to do,
I didn't know how to enter HTML code but its getting easier for me & I will
figure it out yet. I would like to know the to reason to a guy I have never understood, myself.</p>
<p>I like to think that your here cause your interested in knowing who stands behind the smile, if not then maybe you are an exclusive few that already know.
The reason Why I have this page ? I like to communicate, one of the most frustrating things to me is the lack of communications. Plus if a picture is worth a thousand words I am sparing you a lot of rambling by plastering my face on here. So why not have a spot where you explain yourself, and allow the reader to hear your self-narrative?</p>
<p>So I suppose that's just what this is, a guided tour of who I am, what I believe, where I've been, and where I wanna
go. I often meet people who haven't a clue where they have been or what is
ahead, by putting this all together I remind myself who I want to be. As the
site is brought up to where I am now in life there will be greater use of the
functions to the left. Obviously Rome wasn't built in a day, and neither will
this web page be.</p>
<p>After all, it is glimpse of who I am, and I am ever changing with new experiences, and touched by the
collisions of life with the people I meet. I've been told that when you die if
you have 5 true friends, you are a rich man. It is early in my life, and I am
developing who I am so this section is pretty unpopulated. While I have lots of
friends, this section is dedicated to the people that have been a part of my
life for many years. An injustice is being corrected now. On this site way to
much credit, and time was spent on two many aspects of life that aren't the
central feature to why I personally live. Honestly...we get by with a
little help from our friends. I appreciate all my friends, but I make no
apologizes above all friends I have a life friend.</p>
</div>
<div id="footer">
<p><a href="http://www.amazingcounters.com" target="_top"><img border="0" src="http://www.amazingcounters.com/counter.php?i=5372&c=16429" alt="free hit counters"></a><br><small><a href="http://www.computers-coupon-gateway.com/office-depot-coupon.html" target="_top"></a></small></p>
<!-- Start Bravenet.com Service Code -->
<p><a href="http://pub41.bravenet.com/guestbook/3467490606/">
<img src="http://assets.bravenet.com/cp/guestbook.gif" border="0" title="Free Guestbook from Bravenet.com" alt="Free Guestbook from Bravenet.com"></a></p>
<!-- End Bravenet.com Service Code -->
<script type="text/javascript" src="http://www4.addfreestats.com/cgi-bin/countnow.cgi?usr=00407114&type=2">
</script>
<noscript>
<a href="http://www.addfreestats.com">Inlive</a></noscript>
<!-- END inlive CODE -->
<BR>
<BR>
<a href="mailto:webmasteratjaysonberger.com?subject=Feedback">webmasteratjaysonberger.com</a> For problems with webpage
<BR>
<a href="mailto:jayatjaysonberger.com?subject=Feedback"> jayatjaysonberger.com</a>For all other emails
<BR>
<A HREF="http://jasonsforum.proboards100.com/"> My Message Forum</A>
<BR>
<p><STRONG>Copyright © 2003-2008 Jasons Hompage - All Rights Reserved</STRONG></P>
<p><script type="text/javascript">
if (Count()==1){
document.write("This is your 1st visit to my page")
When()
}
else if (Count()>1)
document.write("Welcome back. Your last visit was on <b>" + When() +"</B>.")
</script>
<a href="http://www.statssheet.com/" target="_top"><img src="http://www.statssheet.com/images/hit_counter_02.gif" alt="website counter" border="0" align="top" vspace="2"></a>
<script type="text/javascript">
<!--
var FCS_Account="11049";
var FCS_Server="http://www.statssheet.com";
var FCS_Page="DetectName";
var FCS_Url="DetectUrl";
var FCS_Offset="1";
var FCS_Interval="24";
var FCS_Cntimg="100";
// -->
</script>
<script type="text/javascript" src="http://www.statssheet.com/js.php?usr=11049"></script></p>
</div>
</body>
</html> |
+ all the advice by Ron (above) |
|
jason102178
Joined: 15 May 2008 Posts: 40 Location: Ohio
|
Posted: Tue Aug 19, 2008 12:23 pm thanks |
|
|
|
thank you for all the useful information altho one thing didnt work properly
when i enterered this code everything on my homepage was shifted to the left and the background was all white
| Code: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Site-Exit" content="revealTrans(Duration=3.0,Transition=23)">
<title>Jasons Homepage</title>
<link rel=stylesheet href="underbody.css" type="text/css">
<script type="text/javascript">
<!-- Begin Script
//Display Time of last visit script- Mattias Sjoberg
//Modified by JavaScript Kit (http://javascriptkit.com)
//Visit http://javascriptkit.com for this script
var expDays = 30;
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
function When(info){
// When
var rightNow = new Date()
var WWHTime = 0;
WWHTime = GetCookie('WWhenH')
WWHTime = WWHTime * 1
var lastHereFormatting = new Date(WWHTime); // Date-i-fy that number
var intLastVisit = (lastHereFormatting.getYear() * 10000)+(lastHereFormatting.getMonth() * 100) + lastHereFormatting.getDate()
var lastHereInDateFormat = "" + lastHereFormatting; // Gotta use substring functions
var dayOfWeek = lastHereInDateFormat.substring(0,3)
var dateMonth = lastHereInDateFormat.substring(4,10)
var hours = "" + lastHereFormatting.getHours()
var year = lastHereFormatting.getYear()
if (year < 1000) year+=1900
var minutes = "" + lastHereFormatting.getMinutes()
if (minutes.substring(0,1) == minutes){
minutes = "0" + minutes
}
var WWHText = dayOfWeek + ", " + dateMonth + " " + year + " at " + hours + ":" + minutes// display
SetCookie ("WWhenH", rightNow.getTime(), exp)
return WWHText;
}
function Count(info){
var psj=0;
// How many times
var WWHCount = GetCookie('WWHCount')
if (WWHCount == null) {
WWHCount = 0;
}
else{
WWHCount++;
}
SetCookie ('WWHCount', WWHCount, exp);
return WWHCount+1;
}
function set(){
// VisitorName = prompt("Who are you?", "Nada");
// SetCookie ('VisitorName', VisitorName, exp);
SetCookie ('WWHCount', 0, exp);
SetCookie ('WWhenH', 0, exp);
}
function getCookieVal (offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() - 1);
// This cookie is history
var cval = GetCookie (name);
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}
// End Script -->
</script>
<script type="text/javascript">
function change_bgcolor(icolor) {
document.bgColor= icolor;
}
</script>
<script type="text/javascript">
<!-- Hide from older browsers
alert('Hey Guys thanks for taking the time to look at my site......My site is currently undergoing construction so please keep checking back...and sign my guest book as well....I just added this new song it has so much meaning to it....its how I feel when I am involved with someone, also under the links page click on the banner at the top for live gay radio.'); // end hiding -->
</script>
<script type="text/javascript">
<!--
//Disable right mouse click Script
//By Maximus (maximusatnsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message="2003-2008 Jasons Webpage- All Rights Reserved.";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script>
<script type="text/javascript">
var text1="J A S O N ' S * H O M E P A G E "
comeback=0
cometo=0
function dis(){
window.status=text1.substring(0,cometo)
if(comeback==1){
cometo--;
if(cometo==0){comeback=0}
} else {cometo++;if(cometo==text1.length){comeback=1}}
window.status=text1.substring(0,cometo)+""
if(cometo==text1.length){window.setTimeout("dis()",500);} else {window.setTimeout("dis()",5);}
}
dis()
</script>
</head>
<body>
<div id="content">
<p><a target="_blank" href="picture.jpg"><img height=100 width=100 src="picture_small.jpg" border=2 xthumbnail-orig-image="picture.jpg" ></a></p>
<p><A HREF="javascript:change_bgcolor('white')">Click Here to change background color to white</A></p>
<p class="first">Hey everyone just incase you don't know who I am my name is Jason, I am 29 Im originally from a town called
Morenci Michigan, & I moved to Louisville Kentucky were I have lived for almost 3 years
now. and then I movd to Toledo Ohio were i am right now I am 5' 11" & weigh 160lbs.
If ya want to know more about me feel free to ask. I am a very easy and outgoing guy I
don't like drama or any of that bull crap. I also enjoy jet skiing and camping as well.</p>
<p>Well don't forget to sign my guest book below ok. Well thank you for visiting my web site
I will update it periodically. This is the first time I have done one its pretty hard to do,
I didn't know how to enter HTML code but its getting easier for me & I will
figure it out yet. I would like to know the to reason to a guy I have never understood, myself.</p>
<p>I like to think that your here cause your interested in knowing who stands behind the smile, if not then maybe you are an exclusive few that already know.
The reason Why I have this page ? I like to communicate, one of the most frustrating things to me is the lack of communications. Plus if a picture is worth a thousand words I am sparing you a lot of rambling by plastering my face on here. So why not have a spot where you explain yourself, and allow the reader to hear your self-narrative?</p>
<p>So I suppose that's just what this is, a guided tour of who I am, what I believe, where I've been, and where I wanna
go. I often meet people who haven't a clue where they have been or what is
ahead, by putting this all together I remind myself who I want to be. As the
site is brought up to where I am now in life there will be greater use of the
functions to the left. Obviously Rome wasn't built in a day, and neither will
this web page be.</p>
<p>After all, it is glimpse of who I am, and I am ever changing with new experiences, and touched by the
collisions of life with the people I meet. I've been told that when you die if
you have 5 true friends, you are a rich man. It is early in my life, and I am
developing who I am so this section is pretty unpopulated. While I have lots of
friends, this section is dedicated to the people that have been a part of my
life for many years. An injustice is being corrected now. On this site way to
much credit, and time was spent on two many aspects of life that aren't the
central feature to why I personally live. Honestly...we get by with a
little help from our friends. I appreciate all my friends, but I make no
apologizes above all friends I have a life friend.</p>
</div>
<div id="footer">
<p><a href="http://www.amazingcounters.com" target="_top"><img border="0" src="http://www.amazingcounters.com/counter.php?i=5372&c=16429" alt="free hit counters"></a><br><small><a href="http://www.computers-coupon-gateway.com/office-depot-coupon.html" target="_top"></a></small></p>
<!-- Start Bravenet.com Service Code -->
<p><a href="http://pub41.bravenet.com/guestbook/3467490606/">
<img src="http://assets.bravenet.com/cp/guestbook.gif" border="0" title="Free Guestbook from Bravenet.com" alt="Free Guestbook from Bravenet.com"></a></p>
<!-- End Bravenet.com Service Code -->
<script type="text/javascript" src="http://www4.addfreestats.com/cgi-bin/countnow.cgi?usr=00407114&type=2">
</script>
<noscript>
<a href="http://www.addfreestats.com">Inlive</a></noscript>
<!-- END inlive CODE -->
<BR>
<BR>
<a href="mailto:webmasteratjaysonberger.com?subject=Feedback">webmasteratjaysonberger.com</a> For problems with webpage
<BR>
<a href="mailto:jayatjaysonberger.com?subject=Feedback"> jayatjaysonberger.com</a>For all other emails
<BR>
<A HREF="http://jasonsforum.proboards100.com/"> My Message Forum</A>
<BR>
<p><STRONG>Copyright © 2003-2008 Jasons Hompage - All Rights Reserved</STRONG></P>
<p><script type="text/javascript">
if (Count()==1){
document.write("This is your 1st visit to my page")
When()
}
else if (Count()>1)
document.write("Welcome back. Your last visit was on <b>" + When() +"</B>.")
</script>
<a href="http://www.statssheet.com/" target="_top"><img src="http://www.statssheet.com/images/hit_counter_02.gif" alt="website counter" border="0" align="top" vspace="2"></a>
<script type="text/javascript">
<!--
var FCS_Account="11049";
var FCS_Server="http://www.statssheet.com";
var FCS_Page="DetectName";
var FCS_Url="DetectUrl";
var FCS_Offset="1";
var FCS_Interval="24";
var FCS_Cntimg="100";
// -->
</script>
<script type="text/javascript" src="http://www.statssheet.com/js.php?usr=11049"></script></p>
</div>
</body>
</html> |
|
|
jason102178
Joined: 15 May 2008 Posts: 40 Location: Ohio
|
Posted: Tue Aug 19, 2008 12:27 pm also |
|
|
|
also you had mentioned my welcome not showing up properly how would i fix that do i need a code or do i have to resize the image.
also you mentioned using a more useful media program instead of real player to be honest thats all i new how to.
what media player would you recommend and what type of converter program would i use to convert it to that special file right now i use real converter to make it an rm file and what would the code be to place it in the same location on my webpage and the same size. |
|
PayneLess Designs

Joined: 28 Feb 2007 Posts: 1390 Location: Biloxi, MS
|
Posted: Tue Aug 19, 2008 5:05 pm |
|
|
|
I'll try to answer your questions that are related to my post. I would suggest that you keep your pages simple without a lot of complex code and correct all coding errors by setting up proper frame pages.
You may have to resize the "fire_title.swf" or you can resize the amount of space the frame page takes underneath, but either way, the height is insufficient to properly display the file.
Any of the more common media players would be fine. WMP, Quicktime, I see a WAV file listed (http://www.jaysonberger.com/everytime.wav) which is good.
Although this online media player tool writes lousy code, it does work if you put in the correct path. You can even test the player online before you copy/paste the code to your page:
Embedded Media HTML Generator |
|
jason102178
Joined: 15 May 2008 Posts: 40 Location: Ohio
|
|
jason102178
Joined: 15 May 2008 Posts: 40 Location: Ohio
|
Posted: Tue Aug 19, 2008 6:04 pm |
|
|
|
| i used the tidy cleaner so it is suppose to correct any issues then i copied and pasted into my main.html |
|
jason102178
Joined: 15 May 2008 Posts: 40 Location: Ohio
|
Posted: Tue Aug 19, 2008 6:29 pm |
|
|
|
Take a look at my website now alot of things has like over 126 errors and now they only say like 12 or 7 errors so i guess that means its alot better now
but some things like my flash intro that file is index.html and whatever i change within there like what tidy clean up gives me to change it to then my intro will not work then there is main.html then top.html then left.html and links.html i dont think i will be able to get it to say its 100 percent ok because alot of things tidy suggests will make it so my website will not work if you could take a look at it and tell me if things looked like they inprooved or not thanks a bunch |
|
PayneLess Designs

Joined: 28 Feb 2007 Posts: 1390 Location: Biloxi, MS
|
Posted: Tue Aug 19, 2008 6:53 pm |
|
|
|
All that first error means is you need the meta tag between your head tags for the character encoding. I use this:
| Code: |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> |
but you can use this one if you like:
| Code: |
| <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> |
The other error is that you need an opening head tag, not the closing one you had before and it must be after the opening <html> tag. A lot of these errors will disappear as you correct the first ones.
You didn't use my frameset code modified for you pages. I just added your XHTML 1.0 Strict doctype to it and it validates 100%.
BTW, I finally saw the small, white Skip text link on Intro page. Missed it the first time. |
|
jason102178
Joined: 15 May 2008 Posts: 40 Location: Ohio
|
Posted: Tue Aug 19, 2008 7:58 pm |
|
|
|
thanks for that info i added it and it corrected the problem the main.html is good according to tidy cleanup
now im working on my top.html and it gives me these errors ive tried everything to fix them ive added ive subtracted it it highlighs in red either " symbol or the >symbol and ive tried to removing or adding them or a / and nothing is working
| Code: |
| http://validator.w3.org/check?uri=http%3A%2F%2Fwww.jaysonberger.com%2Ftop.html&charset=(detect+automatically)&doctype=Inline&group=0&st=1&user-agent=W3C_Validator%2F1.591 |
|
|
PayneLess Designs

Joined: 28 Feb 2007 Posts: 1390 Location: Biloxi, MS
|
Posted: Tue Aug 19, 2008 8:26 pm |
|
|
|
Those errors are going to be hard to correct since you are using the embed tag which is out of use and deprecated. Those dealing with "&' (ampersand) just mean that the symbol must be written using the character entity for it:
.
This code will work better than what you have for the media player:
| Code: |
<!-- begin embedded Flash file... -->
<table style="border:0; padding:0;" summary="Fire Title">
<tr>
<td><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' style="width:1400px; height:100px;">
<param name='movie' value="http://www.jaysonberger.com/fire_title.swf">
<param name='quality' value="high">
<param name='bgcolor' value='#000'>
<param name='loop' value="true">
<embed src="http://www.jaysonberger.com/fire_title.swf" quality='high' style="width:1400px; height:100px; background:#000;" loop="true" type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'>
</object>
</td>
</tr>
<!-- ...end embedded Flash file -->
</table> |
To center the player code, you might enclose it in this container:
| Code: |
| <div style="width: 1400px; margin: 1% auto;"> Media Code Here </div> |
The page would validate inserting the embed tag code using JavaScript.
Last edited by PayneLess Designs on Wed Aug 20, 2008 6:02 pm; edited 1 time in total |
|
jason102178
Joined: 15 May 2008 Posts: 40 Location: Ohio
|
Posted: Tue Aug 19, 2008 9:12 pm |
|
|
|
| you mention that the embed tags are out of use and deprecated the code you just gave me is embedded... what other way is there to do things... embedded just means is has it running from the webpage if there was another way it would be via java or some kind of pop up i dont know of any other doe to do and if i changed the embedded i would think i would have to redo my whole website |
|
jason102178
Joined: 15 May 2008 Posts: 40 Location: Ohio
|
Posted: Tue Aug 19, 2008 9:19 pm |
|
|
|
also that code you just gave me isnt a code to play the song through media player it is the html for my top.html that has to do with my banner at the top
my media player html is located in the left.html thats why i have it there is because i want it all the way to the left i didnt want it centered |
|
PayneLess Designs

Joined: 28 Feb 2007 Posts: 1390 Location: Biloxi, MS
|
Posted: Wed Aug 20, 2008 4:05 am |
|
|
|
The <embed> tag (there's only one, no closing tag) was included for some browser that may require it. The proper tags to use to embed media is with the <object></object> tags. The code is for a flash player which your file is for the "banner" at the top.
If you want the <embed tag to validate and work, you can use this:
| Code: |
<script type="text/javascript">
document.write('<embed src="http://www.jaysonberger.com/fire_title.swf" quality='high' style="width:800px; height:100px; background:#000;" loop="true" type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'>')
</script> |
I haven't looked at the media file on the left side. I will have to look at the code and file itself to see if I can get it to work without me downloading RealPlayer... a well known malware media program, unless they've cleaned up their software. |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|