Help required with scrolling box

This is a discussion on "Help required with scrolling box" within the JavaScript Forum section. This forum, and the thread "Help required with scrolling box are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 18th, 2005, 13:41
New Member
Join Date: Jul 2005
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Help required with scrolling box

Hiya

I hope someone will be able to help me with a scrolling box problem.

If you look at this temp page http://www.global-tuition.com/course...rses/temp.html on the right hand side is a scrolling box.

My problems are ..

(1) at the bottom of the box I cannot get rid of the small blue background strip

(2) I would like it to display text from another file rather than having all the text in the same file

Can anyone help please.
Annie
Reply With Quote

  #2 (permalink)  
Old Jul 19th, 2005, 14:49
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
You'll need to use an iframe instead of a textarea:

Code: Select all
<iframe src="mypage.htm" width="100" height="100"></iframe>
Hope that helps.
Reply With Quote
  #3 (permalink)  
Old Jul 20th, 2005, 03:56
Junior Member
Join Date: Jul 2005
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to phleet
Personally, I can't stand iFrames, mostly because they aren't as versatile as div's or table cells, if you have access to php, I would strongly recommend this method.

Code: Select all
<div style="overflow:auto;" height=400 width=150>
<?php
include('content.inc');
?>
</div>
If there are any problems, just reply here
Reply With Quote
  #4 (permalink)  
Old Jul 20th, 2005, 05:35
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
The scrolling DIV-include file method phleet showed isn't limited to just php, but can be down using ASP, or plain old server side includes. Do a search in Webforumz for SSI for links and examples.
Reply With Quote
  #5 (permalink)  
Old Jul 20th, 2005, 07:53
New Member
Join Date: Jul 2005
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
problem solved with the div tag

ty for help
Reply With Quote
  #6 (permalink)  
Old Jul 20th, 2005, 15:21
Junior Member
Join Date: Jul 2005
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to phleet
Welcome, glad to be of service.

It's nice to know that my code actually worked :P
Reply With Quote
Reply

Tags
help, required, scrolling, box

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
creating a scrolling bar RAGolding Starting Out 6 Mar 6th, 2008 22:46
scrolling! help! alexgeek Webforumz Cafe 5 Aug 8th, 2007 17:37
How do I stop it scrolling to the top? marksk Web Page Design 2 Jul 26th, 2007 20:32
Scrolling thumbnail Dan Oliver Flash & Multimedia Forum 1 Jun 6th, 2007 16:22
scrolling text pyroknoppix Web Page Design 4 Oct 4th, 2005 02:45


All times are GMT. The time now is 09:57.


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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43