View Full Version : how?


Skipperkirk
01-07-2005, 06:53 AM
ive seen it done on a few sites...but cant find out how to do it...

where there is a thing like this:

text text text text text
text text text text text
text text text text text
text text text text text
text text text text text
text text text text text
text text text text text
\/ /\

and when your mouse hovers the arrow, it schrools the doc...

please help :)

thanks

skipperkirk

Skipperkirk
01-07-2005, 07:02 AM
ok, well i found out how to do it (http://www.dynamicdrive.com/dynamicindex11/scrollc2.htm ),but now i am stuck...

i want to have it like this, with the arrows on top and something inbetween them:

\/ text (or small picture) \/

the content
the content
the content
the content
the content

MaGiCSuN
01-07-2005, 09:27 AM
find the <table> where it has two images in it and delete the whole <table> to </table> part. Then put the following code at the top of the whole coding right before the first <script type="text/javascript"> thing

So remove:

<table width="175px"><td><p align="right">
<a href="#" onMouseover="moveup()" onMouseout="clearTimeout(moveupvar)"><img src="up.gif" border=0></a> <a href="#" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)"><img src="down.gif" border=0></a></p></td>
</table>

and put this at the top right before <script type="text/javascript">

/******************************************
* Scrollable content script II- © Dynamic Drive (www.dynamicdrive.com)
* Visit http://www.dynamicdrive.com/ for full source code
* This notice must stay intact for use
etc etc


<table width="175px"><td>
<a href="#" onMouseover="moveup()" onMouseout="clearTimeout(moveupvar)"><img src="up.gif" border=0></a> text here bla bla bla <a href="#" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)"><img src="down.gif" border=0></a></td>
</table>


Love,
Mirna

Skipperkirk
01-12-2005, 09:09 AM
how do i get the stuff ( \/ text blah blah here /\ )

on top of the box?

Skipperkirk
01-19-2005, 08:31 AM
anybody know how?

Monkey Bizzle
01-19-2005, 08:53 AM
did you do what mirna said?

Skipperkirk
01-19-2005, 09:00 AM
oh oh oh, i just now got what she said! sorry about that! :blush: :blush: :blush:

is there a way/how would i to put a background color/img (non scrolling) in the content part?

MaGiCSuN
01-19-2005, 12:20 PM
this part (it's the first <ilayer>, not the second one!):

<ilayer name="nscontainer" width=175 height=160 clip="0,0,175,160">

edit it to this:

<ilayer name="nscontainer" width=175 height=160 clip="0,0,175,160" style="background-image: url(URLHERE.GIF); background-repeat: no-repeat; background-attachment: fixed;">

and edit URLHERE.GIF to the url of the image :) It's just html, and i just found the content, and a layer is surrounding it (like a div) so that must be the area you are talking about :)

love,
Mirna

Skipperkirk
01-20-2005, 08:30 AM
ok, well it didnt work for me when i put it in the ilayer, but it did when i put it in the div...so that makes me start wondering...

could someone with firefox, ie... etc please check Here (http://www.freewebs.com/thecadlefamily/site_updates_box.htm) to see if the background in the box with text shows up? thanks so much!


Skipperkirk

Edit: and also, how can i make it so that when you click on the picture inbetween the two arrows the page refreshs...thanks!

Monkey Bizzle
01-20-2005, 08:45 AM
I'm using FireFox and I don't see a picture in the text box.

Skipperkirk
01-20-2005, 08:46 AM
hmmmm....have any ideas on how i could fix it?

Monkey Bizzle
01-20-2005, 08:55 AM
not really... i don't really know what an ilayer is or how it works. sorry =(

Skipperkirk
01-20-2005, 08:57 AM
yeah me eaither...maybe i should look it up eh...anyone else know how to fix it?

(dont for get the other question please ;) )


thanks!

Skipperkirk
01-20-2005, 09:46 AM
ok, i think i fixed it...can someone look now :) thanks!

MaGiCSuN
01-20-2005, 12:07 PM
i see the image :) and it scrolls etc etc. However the text is hard to read, but that's just an little thing :P

Love,
Mirna

Monkey Bizzle
01-20-2005, 06:47 PM
in FireFox, I see the image now, but there is a big white space at the bottom of the box I see that you have the image set to repeat on the x axis so I don't know if that was intentional or not...

I was trying to figure out how to do the other thing where you click on the update pic and it updates and while I couldn't figure that out, here is something for you to think about... for the arrow buttons you have:

<a href="DONT CLICK ON THIS!" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)"><img src="http://www.freewebs.com/thecadlefamilypictures/bluearrowgriddown.bmp" border="0" align="top"></a>

instead of taking the risk that people might click on the pic and be directed to an error page, why not do this instead?

<img src="http://www.freewebs.com/thecadlefamilypictures/bluearrowgriddown.bmp" border="0" align="top" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)">

I mean, I don't know if it will work or not, but it's worth a shot?

Skipperkirk
01-21-2005, 01:48 AM
MaGiCSuN: yeah, im still working on a good text color...

Monkey Bizzle: thats just a tempory site that im using, but i see what your saying :)


thanks all!