html table problem

:confused: I'm TRYING to make the table I'm using scroll, and still be able to add html stuff (images) inside without turning it to text..but all my images become the html Text and not the actual images that i want.<br />
any ideas how i can fix this?<br />
<br />
<?>jeriko<?> :confused:<!--content-->Are you by any chance using FrontPage? If so, rid yourself of that plague, and get Dreamweaver, or Download <!--more--> HTML-Kit from <!-- m --><a class="postlink" href="http://www.chami.com">http://www.chami.com</a><!-- m --> If you don't want to do that (though I would highly recommend not using FP), you can get around FrontPage's bug of changing < and > to thier character entities by first pasting the code into notepad, and copying it from there. Also, if you're not using FrontPage, you'll have to explain your problem a bit more.<br />
<br />
One other thing, shouldn't <?>jeriko<?> be <?>jeriko</?> ? :p<!--content-->i am useing dreamweaver here check out this page <!-- m --><a class="postlink" href="http://www27.brinkster.com/yukiyue">http://www27.brinkster.com/yukiyue</a><!-- m --> <br />
what i am trying to do is make my html text turn to images but it wont work on my scrolling text table.<!--content-->Sounds to me like you're using a wysiwyg editor & typing the html directly into the table, instead of typing it into the code.<!--content-->Yes, look in your source code, and turn all the < to < and the > to ><!--content-->this is my code but it isnt working<br />
<br />
<br />
<html><br />
<br />
<head><br />
<meta name="main"><br />
<title>main</title><br />
</head><br />
<br />
<body background="http://www27.brinkster.com/yukiyue/bgs/flcl-bg.jpg"><br />
<p><br />
<p><br />
<p><br />
<table width="97%" border="0" height="400"><br />
<tr> <br />
<td height="321" background="http://www27.brinkster.com/yukiyue/bgs/lain-bg.jpg" align="left" valign="top"> <br />
<br />
<br />
<form><textarea rows="29" cols="123" style="background:http://www27.brinkster.com/yukiyue/bgs/lain-bg.jpg" style="font-family:Comic Sans ms" style="color:#000000" "style="border style:solid"><br />
3/2/01 <br />
- Well now the site is up and running except for a few more things we <br />
need to add on to the site. The releases has a news section. If you have <br />
any information on or would like to help out with the site then e-mail <br />
me. Well that seems to be it so I am off to work on this site. Later! <br />
<br />
~*~ Yukie Yue and Fou Lu ~*~<br />
<br />
6/16/02 - Yes i know it's <br />
been a while but I've been focusing on my school work. I've been looking <br />
at the fanfictions and i've come across some really well put together <br />
ones and soon they will be in our library.<br />
<br />
<p><font face="Comic Sans MS" color="#000000"> ~*~ Yuki Yue ~*~</font></p><br />
<p><font face="Comic Sans MS" color="#000000">6/23/02 - Okay I've found <br />
that the wallpapers from animewallpapers.com are gorgeous and I've begun <br />
using them left and right. I realise that I didn't ask and so Iwent to <br />
do that today. as well as fixing the main page, FFI page. Worked on the <br />
Manga and Fan Art pages trying to organize the pictures and things. It <br />
seems that more and more I'm the only one working here so i'm setting <br />
up a solo email as the webmistress.<br />
<br>~*~ Yuki Yue ~*~</font></p><br />
<p><font face="Comic Sans MS" color="#000000">9/29/03 - OK so I've missed alot<br />
while I was gone. I've been playing on <!-- m --><a class="postlink" href="http://www.go-gaia.com">http://www.go-gaia.com</a><!-- m --> and making name<br />
tags for my pets. *^^* See? Well more to come.<br />
<p><img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www27.brinkster.com/yukiyue/gaia/JCname.gif"><br />
<p><img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www27.brinkster.com/yukiyue/gaia/Jname.gif"><br />
<p><img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www27.brinkster.com/yukiyue/gaia/K-Jia.gif"><br />
<p><img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www27.brinkster.com/yukiyue/gaia/Kname.gif"><br />
<p><img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www27.brinkster.com/yukiyue/gaia/Meeponame.gif"><br />
<p><img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www27.brinkster.com/yukiyue/gaia/Nametag.gif"><br />
<p><img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www27.brinkster.com/yukiyue/gaia/NametagCheeky.gif"><br />
<p><img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www27.brinkster.com/yukiyue/gaia/Simple-tag-b.gif"><br />
<p><img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www27.brinkster.com/yukiyue/gaia/Zname.gif"><br />
<br>~*~ Yuki Yue ~*~</font></p><br />
<p> .</p><br />
<br />
<br />
</textarea></form></center><center><br />
<br />
</td><br />
</tr><br />
</table><br />
<p><a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.animewallpapers.com" target="_blank">Anime Wallpapers!</a>-<b>Here's where you can get every one of the great wallpapers I use *^^* and even send them the ones you make ~*~ Yuki Yue ~*~</b><br />
<p><br />
<p><br />
<p><br />
<p><br />
<p> <br />
</body><br />
</html><!--content-->You have your code inside of a <textarea> -- that's why it shows up as code. Try using a <div> with the height, width and overflow set, like this:<br />
<br />
<div style="height: 500px; width: 500px; overflow: auto;">your code here</div><!--content-->k thanks that worked!! :p<!--content-->
 
Back
Top