PC Review


Reply
Thread Tools Rate Thread

How Do I Create a Scrolling Text Box For News Items On My Website?

 
 
=?Utf-8?B?QWRhbXVzMDE=?=
Guest
Posts: n/a
 
      27th Oct 2005
hey,

how do i create a scrolling text box within my current website table, which
i can type news headlines for people to read, and scroll through? but i don't
want a text box that people write in (like a comment box)... what i need is a
text box that i can create and edit using frontpage, and then publish it to
the web for people to read.

and also, it it possible to using HTML code, ie.

<STYLE type="text/css">
<!--
BODY {
scrollbar-face-color: #000000;
scrollbar-highlight-color: #000000;
scrollbar-3dlight-color: #000000;
scrollbar-darkshadow-color: #000000;
scrollbar-shadow-color: #000000;
scrollbar-arrow-color: #FF3300;
scrollbar-track-color: #000000;
}
-->
</STYLE>

on the text box, so that it has a certain look, that differs to the rest of
the website?

i don't know if this will make much sense, but hopefully you can get at what
i mean.
do you need to use javascript to achieve this?
in which case, what is a good website for me to learn how to create an
interactive javascript website?

thanks,

adam.
 
Reply With Quote
 
 
 
 
Steve Easton
Guest
Posts: n/a
 
      27th Oct 2005
Look for scrolling marquee in FrontPage, Insert > Web Components > Dynamic Effects >
Marquee.


As the scrollbar, yes but don't assign it to the body.
Give the text box a class name and assign it to the class.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer


"Adamus01" <(E-Mail Removed)> wrote in message
news:A861F553-BC52-48A4-8699-(E-Mail Removed)...
> hey,
>
> how do i create a scrolling text box within my current website table, which
> i can type news headlines for people to read, and scroll through? but i don't
> want a text box that people write in (like a comment box)... what i need is a
> text box that i can create and edit using frontpage, and then publish it to
> the web for people to read.
>
> and also, it it possible to using HTML code, ie.
>
> <STYLE type="text/css">
> <!--
> BODY {
> scrollbar-face-color: #000000;
> scrollbar-highlight-color: #000000;
> scrollbar-3dlight-color: #000000;
> scrollbar-darkshadow-color: #000000;
> scrollbar-shadow-color: #000000;
> scrollbar-arrow-color: #FF3300;
> scrollbar-track-color: #000000;
> }
> -->
> </STYLE>
>
> on the text box, so that it has a certain look, that differs to the rest of
> the website?
>
> i don't know if this will make much sense, but hopefully you can get at what
> i mean.
> do you need to use javascript to achieve this?
> in which case, what is a good website for me to learn how to create an
> interactive javascript website?
>
> thanks,
>
> adam.



 
Reply With Quote
 
=?Utf-8?B?QWRhbXVzMDE=?=
Guest
Posts: n/a
 
      28th Oct 2005
That's not really what i'm after...

I want something like a scrolling text box, but not for guests to write in,
or not one that just scrolls across the page endlessly. I want a box, which
they can scroll up and down, to view news stories. sort of like a regular
webpage, but within my current website.

i can't explain it very well, but, i hope you can sort of understand what
i'm talking about
thanks.

"Steve Easton" wrote:

> Look for scrolling marquee in FrontPage, Insert > Web Components > Dynamic Effects >
> Marquee.
>
>
> As the scrollbar, yes but don't assign it to the body.
> Give the text box a class name and assign it to the class.
>
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> 95isalive
> This site is best viewed..................
> ...............................with a computer
>
>
> "Adamus01" <(E-Mail Removed)> wrote in message
> news:A861F553-BC52-48A4-8699-(E-Mail Removed)...
> > hey,
> >
> > how do i create a scrolling text box within my current website table, which
> > i can type news headlines for people to read, and scroll through? but i don't
> > want a text box that people write in (like a comment box)... what i need is a
> > text box that i can create and edit using frontpage, and then publish it to
> > the web for people to read.
> >
> > and also, it it possible to using HTML code, ie.
> >
> > <STYLE type="text/css">
> > <!--
> > BODY {
> > scrollbar-face-color: #000000;
> > scrollbar-highlight-color: #000000;
> > scrollbar-3dlight-color: #000000;
> > scrollbar-darkshadow-color: #000000;
> > scrollbar-shadow-color: #000000;
> > scrollbar-arrow-color: #FF3300;
> > scrollbar-track-color: #000000;
> > }
> > -->
> > </STYLE>
> >
> > on the text box, so that it has a certain look, that differs to the rest of
> > the website?
> >
> > i don't know if this will make much sense, but hopefully you can get at what
> > i mean.
> > do you need to use javascript to achieve this?
> > in which case, what is a good website for me to learn how to create an
> > interactive javascript website?
> >
> > thanks,
> >
> > adam.

>
>
>

 
Reply With Quote
 
=?Utf-8?B?RGFuIEw=?=
Guest
Posts: n/a
 
      28th Oct 2005
Here's what you want for the "scrolling text box".

<div align="left" style="border-style:solid; border-width:2px;
border-color:blue; background-color:#F0F8FF; overflow-y:scroll; width:200px;
height:300px">This is a div.<br>It has a set width and height, and a vertical
scroll bar.<br>You can put news and info in this box for your users to read.
<br>Scroll down for more<br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>more</div>

"Adamus01" wrote:

> That's not really what i'm after...
>
> I want something like a scrolling text box, but not for guests to write in,
> or not one that just scrolls across the page endlessly. I want a box, which
> they can scroll up and down, to view news stories. sort of like a regular
> webpage, but within my current website.
>
> i can't explain it very well, but, i hope you can sort of understand what
> i'm talking about
> thanks.
>
> "Steve Easton" wrote:
>
> > Look for scrolling marquee in FrontPage, Insert > Web Components > Dynamic Effects >
> > Marquee.
> >
> >
> > As the scrollbar, yes but don't assign it to the body.
> > Give the text box a class name and assign it to the class.
> >
> >
> > --
> > Steve Easton
> > Microsoft MVP FrontPage
> > 95isalive
> > This site is best viewed..................
> > ...............................with a computer
> >
> >
> > "Adamus01" <(E-Mail Removed)> wrote in message
> > news:A861F553-BC52-48A4-8699-(E-Mail Removed)...
> > > hey,
> > >
> > > how do i create a scrolling text box within my current website table, which
> > > i can type news headlines for people to read, and scroll through? but i don't
> > > want a text box that people write in (like a comment box)... what i need is a
> > > text box that i can create and edit using frontpage, and then publish it to
> > > the web for people to read.
> > >
> > > and also, it it possible to using HTML code, ie.
> > >
> > > <STYLE type="text/css">
> > > <!--
> > > BODY {
> > > scrollbar-face-color: #000000;
> > > scrollbar-highlight-color: #000000;
> > > scrollbar-3dlight-color: #000000;
> > > scrollbar-darkshadow-color: #000000;
> > > scrollbar-shadow-color: #000000;
> > > scrollbar-arrow-color: #FF3300;
> > > scrollbar-track-color: #000000;
> > > }
> > > -->
> > > </STYLE>
> > >
> > > on the text box, so that it has a certain look, that differs to the rest of
> > > the website?
> > >
> > > i don't know if this will make much sense, but hopefully you can get at what
> > > i mean.
> > > do you need to use javascript to achieve this?
> > > in which case, what is a good website for me to learn how to create an
> > > interactive javascript website?
> > >
> > > thanks,
> > >
> > > adam.

> >
> >
> >

 
Reply With Quote
 
=?Utf-8?B?QWRhbXVzMDE=?=
Guest
Posts: n/a
 
      28th Oct 2005
wait. i don't get it. am i supposed to copy all of that HTML code you just
wrote, and then paste it in my website's HTML?
where should i paste it? i tried pasting it where i wanted it in the HTML,
and it just came up as a bunch of writing.

sorry, i'm not that great on this HTML stuff, i'm trying to teach myself,
but i'm running into trouble...

thanks again.

"Dan L" wrote:

> Here's what you want for the "scrolling text box".
>
> <div align="left" style="border-style:solid; border-width:2px;
> border-color:blue; background-color:#F0F8FF; overflow-y:scroll; width:200px;
> height:300px">This is a div.<br>It has a set width and height, and a vertical
> scroll bar.<br>You can put news and info in this box for your users to read.
> <br>Scroll down for more<br>
> <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>more</div>
>
> "Adamus01" wrote:
>
> > That's not really what i'm after...
> >
> > I want something like a scrolling text box, but not for guests to write in,
> > or not one that just scrolls across the page endlessly. I want a box, which
> > they can scroll up and down, to view news stories. sort of like a regular
> > webpage, but within my current website.
> >
> > i can't explain it very well, but, i hope you can sort of understand what
> > i'm talking about
> > thanks.
> >
> > "Steve Easton" wrote:
> >
> > > Look for scrolling marquee in FrontPage, Insert > Web Components > Dynamic Effects >
> > > Marquee.
> > >
> > >
> > > As the scrollbar, yes but don't assign it to the body.
> > > Give the text box a class name and assign it to the class.
> > >
> > >
> > > --
> > > Steve Easton
> > > Microsoft MVP FrontPage
> > > 95isalive
> > > This site is best viewed..................
> > > ...............................with a computer
> > >
> > >
> > > "Adamus01" <(E-Mail Removed)> wrote in message
> > > news:A861F553-BC52-48A4-8699-(E-Mail Removed)...
> > > > hey,
> > > >
> > > > how do i create a scrolling text box within my current website table, which
> > > > i can type news headlines for people to read, and scroll through? but i don't
> > > > want a text box that people write in (like a comment box)... what i need is a
> > > > text box that i can create and edit using frontpage, and then publish it to
> > > > the web for people to read.
> > > >
> > > > and also, it it possible to using HTML code, ie.
> > > >
> > > > <STYLE type="text/css">
> > > > <!--
> > > > BODY {
> > > > scrollbar-face-color: #000000;
> > > > scrollbar-highlight-color: #000000;
> > > > scrollbar-3dlight-color: #000000;
> > > > scrollbar-darkshadow-color: #000000;
> > > > scrollbar-shadow-color: #000000;
> > > > scrollbar-arrow-color: #FF3300;
> > > > scrollbar-track-color: #000000;
> > > > }
> > > > -->
> > > > </STYLE>
> > > >
> > > > on the text box, so that it has a certain look, that differs to the rest of
> > > > the website?
> > > >
> > > > i don't know if this will make much sense, but hopefully you can get at what
> > > > i mean.
> > > > do you need to use javascript to achieve this?
> > > > in which case, what is a good website for me to learn how to create an
> > > > interactive javascript website?
> > > >
> > > > thanks,
> > > >
> > > > adam.
> > >
> > >
> > >

 
Reply With Quote
 
=?Utf-8?B?RGFuIEw=?=
Guest
Posts: n/a
 
      28th Oct 2005
Yes, in code view you can copy and paste it where you want it and it should
display correctly.

"Adamus01" wrote:

> wait. i don't get it. am i supposed to copy all of that HTML code you just
> wrote, and then paste it in my website's HTML?
> where should i paste it? i tried pasting it where i wanted it in the HTML,
> and it just came up as a bunch of writing.
>
> sorry, i'm not that great on this HTML stuff, i'm trying to teach myself,
> but i'm running into trouble...
>
> thanks again.
>
> "Dan L" wrote:
>
> > Here's what you want for the "scrolling text box".
> >
> > <div align="left" style="border-style:solid; border-width:2px;
> > border-color:blue; background-color:#F0F8FF; overflow-y:scroll; width:200px;
> > height:300px">This is a div.<br>It has a set width and height, and a vertical
> > scroll bar.<br>You can put news and info in this box for your users to read.
> > <br>Scroll down for more<br>
> > <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>more</div>
> >
> > "Adamus01" wrote:
> >
> > > That's not really what i'm after...
> > >
> > > I want something like a scrolling text box, but not for guests to write in,
> > > or not one that just scrolls across the page endlessly. I want a box, which
> > > they can scroll up and down, to view news stories. sort of like a regular
> > > webpage, but within my current website.
> > >
> > > i can't explain it very well, but, i hope you can sort of understand what
> > > i'm talking about
> > > thanks.
> > >
> > > "Steve Easton" wrote:
> > >
> > > > Look for scrolling marquee in FrontPage, Insert > Web Components > Dynamic Effects >
> > > > Marquee.
> > > >
> > > >
> > > > As the scrollbar, yes but don't assign it to the body.
> > > > Give the text box a class name and assign it to the class.
> > > >
> > > >
> > > > --
> > > > Steve Easton
> > > > Microsoft MVP FrontPage
> > > > 95isalive
> > > > This site is best viewed..................
> > > > ...............................with a computer
> > > >
> > > >
> > > > "Adamus01" <(E-Mail Removed)> wrote in message
> > > > news:A861F553-BC52-48A4-8699-(E-Mail Removed)...
> > > > > hey,
> > > > >
> > > > > how do i create a scrolling text box within my current website table, which
> > > > > i can type news headlines for people to read, and scroll through? but i don't
> > > > > want a text box that people write in (like a comment box)... what i need is a
> > > > > text box that i can create and edit using frontpage, and then publish it to
> > > > > the web for people to read.
> > > > >
> > > > > and also, it it possible to using HTML code, ie.
> > > > >
> > > > > <STYLE type="text/css">
> > > > > <!--
> > > > > BODY {
> > > > > scrollbar-face-color: #000000;
> > > > > scrollbar-highlight-color: #000000;
> > > > > scrollbar-3dlight-color: #000000;
> > > > > scrollbar-darkshadow-color: #000000;
> > > > > scrollbar-shadow-color: #000000;
> > > > > scrollbar-arrow-color: #FF3300;
> > > > > scrollbar-track-color: #000000;
> > > > > }
> > > > > -->
> > > > > </STYLE>
> > > > >
> > > > > on the text box, so that it has a certain look, that differs to the rest of
> > > > > the website?
> > > > >
> > > > > i don't know if this will make much sense, but hopefully you can get at what
> > > > > i mean.
> > > > > do you need to use javascript to achieve this?
> > > > > in which case, what is a good website for me to learn how to create an
> > > > > interactive javascript website?
> > > > >
> > > > > thanks,
> > > > >
> > > > > adam.
> > > >
> > > >
> > > >

 
Reply With Quote
 
=?Utf-8?B?QWRhbXVzMDE=?=
Guest
Posts: n/a
 
      31st Oct 2005
Sweet. I got it now...
One more question... How do I put an image in the background. (say i create
one in photoshop, then save it to my computer... how do i put that behind the
news?)
THANKS so much.

"Dan L" wrote:

> Yes, in code view you can copy and paste it where you want it and it should
> display correctly.
>
> "Adamus01" wrote:
>
> > wait. i don't get it. am i supposed to copy all of that HTML code you just
> > wrote, and then paste it in my website's HTML?
> > where should i paste it? i tried pasting it where i wanted it in the HTML,
> > and it just came up as a bunch of writing.
> >
> > sorry, i'm not that great on this HTML stuff, i'm trying to teach myself,
> > but i'm running into trouble...
> >
> > thanks again.
> >
> > "Dan L" wrote:
> >
> > > Here's what you want for the "scrolling text box".
> > >
> > > <div align="left" style="border-style:solid; border-width:2px;
> > > border-color:blue; background-color:#F0F8FF; overflow-y:scroll; width:200px;
> > > height:300px">This is a div.<br>It has a set width and height, and a vertical
> > > scroll bar.<br>You can put news and info in this box for your users to read.
> > > <br>Scroll down for more<br>
> > > <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>more</div>
> > >
> > > "Adamus01" wrote:
> > >
> > > > That's not really what i'm after...
> > > >
> > > > I want something like a scrolling text box, but not for guests to write in,
> > > > or not one that just scrolls across the page endlessly. I want a box, which
> > > > they can scroll up and down, to view news stories. sort of like a regular
> > > > webpage, but within my current website.
> > > >
> > > > i can't explain it very well, but, i hope you can sort of understand what
> > > > i'm talking about
> > > > thanks.
> > > >
> > > > "Steve Easton" wrote:
> > > >
> > > > > Look for scrolling marquee in FrontPage, Insert > Web Components > Dynamic Effects >
> > > > > Marquee.
> > > > >
> > > > >
> > > > > As the scrollbar, yes but don't assign it to the body.
> > > > > Give the text box a class name and assign it to the class.
> > > > >
> > > > >
> > > > > --
> > > > > Steve Easton
> > > > > Microsoft MVP FrontPage
> > > > > 95isalive
> > > > > This site is best viewed..................
> > > > > ...............................with a computer
> > > > >
> > > > >
> > > > > "Adamus01" <(E-Mail Removed)> wrote in message
> > > > > news:A861F553-BC52-48A4-8699-(E-Mail Removed)...
> > > > > > hey,
> > > > > >
> > > > > > how do i create a scrolling text box within my current website table, which
> > > > > > i can type news headlines for people to read, and scroll through? but i don't
> > > > > > want a text box that people write in (like a comment box)... what i need is a
> > > > > > text box that i can create and edit using frontpage, and then publish it to
> > > > > > the web for people to read.
> > > > > >
> > > > > > and also, it it possible to using HTML code, ie.
> > > > > >
> > > > > > <STYLE type="text/css">
> > > > > > <!--
> > > > > > BODY {
> > > > > > scrollbar-face-color: #000000;
> > > > > > scrollbar-highlight-color: #000000;
> > > > > > scrollbar-3dlight-color: #000000;
> > > > > > scrollbar-darkshadow-color: #000000;
> > > > > > scrollbar-shadow-color: #000000;
> > > > > > scrollbar-arrow-color: #FF3300;
> > > > > > scrollbar-track-color: #000000;
> > > > > > }
> > > > > > -->
> > > > > > </STYLE>
> > > > > >
> > > > > > on the text box, so that it has a certain look, that differs to the rest of
> > > > > > the website?
> > > > > >
> > > > > > i don't know if this will make much sense, but hopefully you can get at what
> > > > > > i mean.
> > > > > > do you need to use javascript to achieve this?
> > > > > > in which case, what is a good website for me to learn how to create an
> > > > > > interactive javascript website?
> > > > > >
> > > > > > thanks,
> > > > > >
> > > > > > adam.
> > > > >
> > > > >
> > > > >

 
Reply With Quote
 
=?Utf-8?B?RGFuIEw=?=
Guest
Posts: n/a
 
      31st Oct 2005
Change "background-color:#F0F8FF;" to "background-image: url(pic.gif);" where
pic.gif is the name of the image you want to use. You may need to add
"background-repeat: no-repeat;" after that if you don't want the image to
tile. HTH.

"Adamus01" wrote:

> Sweet. I got it now...
> One more question... How do I put an image in the background. (say i create
> one in photoshop, then save it to my computer... how do i put that behind the
> news?)
> THANKS so much.
>
> "Dan L" wrote:
>
> > Yes, in code view you can copy and paste it where you want it and it should
> > display correctly.
> >
> > "Adamus01" wrote:
> >
> > > wait. i don't get it. am i supposed to copy all of that HTML code you just
> > > wrote, and then paste it in my website's HTML?
> > > where should i paste it? i tried pasting it where i wanted it in the HTML,
> > > and it just came up as a bunch of writing.
> > >
> > > sorry, i'm not that great on this HTML stuff, i'm trying to teach myself,
> > > but i'm running into trouble...
> > >
> > > thanks again.
> > >
> > > "Dan L" wrote:
> > >
> > > > Here's what you want for the "scrolling text box".
> > > >
> > > > <div align="left" style="border-style:solid; border-width:2px;
> > > > border-color:blue; background-color:#F0F8FF; overflow-y:scroll; width:200px;
> > > > height:300px">This is a div.<br>It has a set width and height, and a vertical
> > > > scroll bar.<br>You can put news and info in this box for your users to read.
> > > > <br>Scroll down for more<br>
> > > > <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>more</div>
> > > >
> > > > "Adamus01" wrote:
> > > >
> > > > > That's not really what i'm after...
> > > > >
> > > > > I want something like a scrolling text box, but not for guests to write in,
> > > > > or not one that just scrolls across the page endlessly. I want a box, which
> > > > > they can scroll up and down, to view news stories. sort of like a regular
> > > > > webpage, but within my current website.
> > > > >
> > > > > i can't explain it very well, but, i hope you can sort of understand what
> > > > > i'm talking about
> > > > > thanks.
> > > > >
> > > > > "Steve Easton" wrote:
> > > > >
> > > > > > Look for scrolling marquee in FrontPage, Insert > Web Components > Dynamic Effects >
> > > > > > Marquee.
> > > > > >
> > > > > >
> > > > > > As the scrollbar, yes but don't assign it to the body.
> > > > > > Give the text box a class name and assign it to the class.
> > > > > >
> > > > > >
> > > > > > --
> > > > > > Steve Easton
> > > > > > Microsoft MVP FrontPage
> > > > > > 95isalive
> > > > > > This site is best viewed..................
> > > > > > ...............................with a computer
> > > > > >
> > > > > >
> > > > > > "Adamus01" <(E-Mail Removed)> wrote in message
> > > > > > news:A861F553-BC52-48A4-8699-(E-Mail Removed)...
> > > > > > > hey,
> > > > > > >
> > > > > > > how do i create a scrolling text box within my current website table, which
> > > > > > > i can type news headlines for people to read, and scroll through? but i don't
> > > > > > > want a text box that people write in (like a comment box)... what i need is a
> > > > > > > text box that i can create and edit using frontpage, and then publish it to
> > > > > > > the web for people to read.
> > > > > > >
> > > > > > > and also, it it possible to using HTML code, ie.
> > > > > > >
> > > > > > > <STYLE type="text/css">
> > > > > > > <!--
> > > > > > > BODY {
> > > > > > > scrollbar-face-color: #000000;
> > > > > > > scrollbar-highlight-color: #000000;
> > > > > > > scrollbar-3dlight-color: #000000;
> > > > > > > scrollbar-darkshadow-color: #000000;
> > > > > > > scrollbar-shadow-color: #000000;
> > > > > > > scrollbar-arrow-color: #FF3300;
> > > > > > > scrollbar-track-color: #000000;
> > > > > > > }
> > > > > > > -->
> > > > > > > </STYLE>
> > > > > > >
> > > > > > > on the text box, so that it has a certain look, that differs to the rest of
> > > > > > > the website?
> > > > > > >
> > > > > > > i don't know if this will make much sense, but hopefully you can get at what
> > > > > > > i mean.
> > > > > > > do you need to use javascript to achieve this?
> > > > > > > in which case, what is a good website for me to learn how to create an
> > > > > > > interactive javascript website?
> > > > > > >
> > > > > > > thanks,
> > > > > > >
> > > > > > > adam.
> > > > > >
> > > > > >
> > > > > >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do you create scrolling marquee text in Word? TheTraveler Microsoft Word Document Management 3 10th Apr 2010 12:27 PM
Create a scrolling NEWS Section Deepak Microsoft Frontpage 1 16th Apr 2008 01:10 PM
How do I get a constantly looping scrolling text on a website? =?Utf-8?B?R2lsbA==?= Microsoft Frontpage 5 14th Jun 2006 06:41 AM
How can I add scrolling text (going up screen) to website with FP2 =?Utf-8?B?U3VlOA==?= Microsoft Frontpage 2 9th Jun 2006 12:04 AM
How to create a text scrolling window? Rickk Microsoft Excel New Users 1 29th Jan 2005 02:29 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:51 AM.