Help Needed With A Web Page

Status
Not open for further replies.
Messages
11
Reaction score
0
Points
0
Hi everyone:

This next problem I have is MIND-BOGGLING :nuts:

I have a page @ http://theleftwingconservative.x10hosting.com/podcasts/video/youtube/ that's supposed to have my YouTube Channel page @ http://www.youtube.com/leftwingconservative embedded in an iFrame that sits just below the news ticker. But all I get is the page background, the banner & the scrolling news ticker.

Here is the EXACT code I'm using on the page
Code:
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="Author" content="Pat Cook">
   <meta name="GENERATOR" content="Mozilla/4.79 [en] (Windows NT 5.0; U) [Netscape]">
   <title>The Left Wing Conservative - YouTube Channel</title>
</head>
<body background="OuterSpace3.gif">

<center><img SRC="tlwclogo.gif" height=90 width=702>
<br>&nbsp;
<br>&nbsp;
<p><script LANGUAGE="JavaScript" SRC="http://widgets.cc/rss/ticker/ticker.php?rss=http%3A%2F%2Frss.news.yahoo.com%2Frss%2Fpolitics&fontfam=Arial%2C+Helvetica&border_style=outset"></script>
<noscript></center>

<div style="border-style: outset; width: 100%;">
<div style="background: #dcdcdc; text-align: center; font-family: Arial, Helvetica; font-size: 17px; overflow: hidden; height: 31px; width: 100%;">
<center>JavaScript must be enabled for the <a href="http://widgets.cc/rss/ticker/">RSS
Ticker Widget</a> to work.
<p><iframe frameborder="0" width="900" height="900" src="http://www.youtube.com/leftwingconservative"></iframe></center>
</div>
</div>

</body>
</html>
What could I be doing wrong?

Help!

Cheers
 
Last edited:

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
Might cuase an issue, you opened a <noscript> tag on line 15 but it was never closed properly. Dunno if thats the cause or not but take a look for where you wanted the ending tag to go and get it in there :)
 
Messages
11
Reaction score
0
Points
0
Might cuase an issue, you opened a <noscript> tag on line 15 but it was never closed properly. Dunno if thats the cause or not but take a look for where you wanted the ending tag to go and get it in there :)
I found just where the problem was. It was just a paragraph of code seperated by <div> & </div> which was creating the obstacle. I just simply removed the unneccessary code.

I swear - <div> & </div> are both just as bad as the often dreaded <p> in HTML. You never know what those will do on some pages. Know what I mean?

Cheers :D
 
Status
Not open for further replies.
Top