So I've tried width and I've tried height and while that does expand the area below the box...the text just wont show up! There are " in the front and back of the whole text, just like the others. It works this way when it's the original sentence...so I don't know what the large amount of text is messing it up.
I tried <div> and <span> and nothing. Heres what I got (drastic height/width to see what was working
):
Code:
<form name="form1">
<select name="select1" size="1" style="background-color:#FFFFD7" onChange="displaydesc(document.form1.select1, thetext1, 'textcontainer1')">
<option selected value="http://www.javascriptkit.com">JavaScript Kit </option>
<option value="http://freewarejava.com">Freewarejava.com</option>
<option value="http://wired.com" target="newwin">Wired News</option>
<option value="http://www.news.com">News.com</option>
<option value="http://www.codingforums.com" target="newwin">Coding Forums</option>
</select>
<input type="button" value="Go"
onClick="jumptolink(document.form1.select1)"><br>
<div id="textcontainer1" align="left" style="font:italic 13px Arial; width:500px; height: 600px">
</div>
</form>
Code:
//1) CUSTOMIZE TEXT DESCRIPTIONS FOR LINKS ABOVE
var thetext1=new Array()
thetext1[0]="This is the perfect fall fragrance! Spicy, sweet, and complex. Vanilla intertwines with a spice
cabinet of cinnamon, clove, allspice, kissed with sugar. Hints of nutmeg and fruits peak out from the heart
notes. If you are not a fan of bakery scents, this is nowhere near the typical "bakery" realm, give it a try! Very
unique and different. - Best Seller!"
thetext1[1]="Direct link to hundreds of free Java applets online!"
thetext1[2]="Up to date news on the technology front"
thetext1[3]="News.com- The #1 technology News site."
thetext1[4]="Web Coding and development forums"
Bookmarks