Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 10-04-2003, 12:17 PM   #1
MarcieB
Confirmed User
 
Join Date: Mar 2003
Posts: 214
[html] Any way to do this?

Hi,

I was just wandering if it's possible to make a story in a scrollable textfield, and put a link in the text that's clickable.

like this (hope this works):
<textarea name="textfield" cols="50">blahblahblah click here for more fuckingblah</textarea>
MarcieB is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 12:18 PM   #2
FabianC
Confirmed User
 
Join Date: Jun 2001
Posts: 1,615
Pretty sure you can't cuz it's a text field .. hurry, someone prove me wrong
FabianC is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 12:20 PM   #3
MarcieB
Confirmed User
 
Join Date: Mar 2003
Posts: 214
yeah i thought so too but you never know...there some pretty harrdcore htmlgurus around here...
MarcieB is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 12:22 PM   #4
Fuckin Bill
Confirmed User
 
Join Date: Feb 2003
Posts: 1,020
If you want it in a scrollable box, do it in an hahahahahaha. Then you can scroll just like a text box, plus have links.
Fuckin Bill is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 12:23 PM   #5
MarcieB
Confirmed User
 
Join Date: Mar 2003
Posts: 214
Damn...didn't think of that (think you mean ifr@me?). Thnx!!
MarcieB is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 12:24 PM   #6
Fuckin Bill
Confirmed User
 
Join Date: Feb 2003
Posts: 1,020
Argh...hahaha = I-F-R-A-M-E
Fuckin Bill is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 12:33 PM   #7
jwerd
Confirmed User
 
Industry Role:
Join Date: Jun 2003
Location: Costa Rica
Posts: 1,953
Yeah, hahahahahaha would work out, hold up
PHP Code:
i f r a m e  src='querystrings.php?navigation=' name='left' height='385' width='520' frameborder='0' >< /i f r a m e 
and take our the spaces!

That's the i f r a m e I use for one of my sites, but go ahead and use it... I've tested it of course, so it works! enjoy.
__________________
Yii Framework Guru - Seasoned PHP vet - Partner @ XXXCoupon.com

Last edited by jwerd; 10-04-2003 at 12:38 PM..
jwerd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 12:35 PM   #8
StuartD
Sofa King Band
 
StuartD's Avatar
 
Join Date: Jul 2002
Location: Outside the box
Posts: 29,903
dhtml
StuartD is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 12:43 PM   #9
IntenseCash
Confirmed User
 
IntenseCash's Avatar
 
Join Date: Apr 2003
Location: Colorado
Posts: 2,421
use I frames in a table


then use I frames on that page you pull up in the I frames if you want to scroll it hope that helps...
__________________
IntenseCash.com
~ Chuck | ICQ: 444887112
Top converting sites:
BrokeStraightBoys.com, CollegeDudes.com & CollegeBoyPhysicals.com
IntenseCash is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 04:33 PM   #10
snipah7
Confirmed User
 
Join Date: May 2003
Posts: 781
use flash.
__________________


ICQ # 273318533 Hit me up for any design, flash, html or any kind work.
snipah7 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 04:59 PM   #11
chronic avenger
Confirmed User
 
chronic avenger's Avatar
 
Join Date: Aug 2003
Location: C.A. All Day
Posts: 2,509
Quote:
Originally posted by snipah7
use flash.
__________________

| Sexxy Toons | Blog Designs |

Icq 333676510
chronic avenger is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 05:04 PM   #12
Penthouse_mike
Confirmed User
 
Industry Role:
Join Date: Jun 2003
Location: Silicon Valley
Posts: 317
Place a div tag like this around your table

------------------------------------------------

div style="overflow: auto; width: 480px; height: 80; padding:0px; margin: 0px"

table stuff here

End div tag

----------------------------------

If your table is more than 80px tall, it will be rendered with a scrollbar. Like any table you can have links in it.
Here may be some browser issues, but I think it works in IE + netscape > version 4.0

looks like this:

Code:
<div style="overflow: auto; width: 480px; height: 80; padding:0px; margin: 0px">
<table cellspacing="0" cellpadding="2">

<tr>
<TD>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean wisi. Aenean 

purus massa, vehicula ac, hendrerit ac, accumsan at, enim. Vivamus varius aliquam 

augue. Cras libero lectus, pharetra non, aliquam non, varius non, nunc. Praesent 

lacinia egestas mi. Integer sit amet quam ut enim posuere imperdiet. Suspendisse 

molestie enim ut nisl. Sed turpis. Suspendisse eget lectus. Nullam a felis eget 

dui venenatis condimentum. Curabitur imperdiet, elit quis mollis luctus, erat 

justo imperdiet turpis, eu vulputate ligula libero sit amet nibh.<BR><BR>
Click <a href="http://www.google.com/">Here</a> for more info.
</tr>
</table>
</div>
Penthouse_mike is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 07:35 PM   #13
Sassyass
Confirmed User
 
Join Date: Dec 2002
Posts: 1,101
Quote:
Originally posted by Penthouse_mike
Place a div tag like this around your table

------------------------------------------------

div style="overflow: auto; width: 480px; height: 80; padding:0px; margin: 0px"

table stuff here

End div tag

----------------------------------

If your table is more than 80px tall, it will be rendered with a scrollbar. Like any table you can have links in it.
Here may be some browser issues, but I think it works in IE + netscape > version 4.0

looks like this:

Code:
<div style="overflow: auto; width: 480px; height: 80; padding:0px; margin: 0px">
<table cellspacing="0" cellpadding="2">

<tr>
<TD>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean wisi. Aenean 

purus massa, vehicula ac, hendrerit ac, accumsan at, enim. Vivamus varius aliquam 

augue. Cras libero lectus, pharetra non, aliquam non, varius non, nunc. Praesent 

lacinia egestas mi. Integer sit amet quam ut enim posuere imperdiet. Suspendisse 

molestie enim ut nisl. Sed turpis. Suspendisse eget lectus. Nullam a felis eget 

dui venenatis condimentum. Curabitur imperdiet, elit quis mollis luctus, erat 

justo imperdiet turpis, eu vulputate ligula libero sit amet nibh.<BR><BR>
Click <a href="http://www.google.com/">Here</a> for more info.
</tr>
</table>
</div>
Add in some other attributes and you canget it to look just like what you did.
boarder-color boarder-width boarder-style background-color

Code:
<div style="overflow: auto; width: 480px; height: 80; padding:0px; margin: 0px; border-style:solid; border-width:1;border-color:grey; background-color:black;">
<table cellspacing="0" cellpadding="2">

<tr>
<TD>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean wisi. Aenean 

purus massa, vehicula ac, hendrerit ac, accumsan at, enim. Vivamus varius aliquam 

augue. Cras libero lectus, pharetra non, aliquam non, varius non, nunc. Praesent 

lacinia egestas mi. Integer sit amet quam ut enim posuere imperdiet. Suspendisse 

molestie enim ut nisl. Sed turpis. Suspendisse eget lectus. Nullam a felis eget 

dui venenatis condimentum. Curabitur imperdiet, elit quis mollis luctus, erat 

justo imperdiet turpis, eu vulputate ligula libero sit amet nibh.<BR><BR>
Click <a href="http://www.google.com/">Here</a> for more info.
</tr>
</table>
</div>
Sassyass is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 08:47 PM   #14
George Bush Jr.
So Fucking Banned
 
Join Date: Oct 2003
Location: The White House
Posts: 150
Code:
<div style="overflow: auto; width: 480px; height: 80; 

padding:0px; margin: 0px; border-style:solid; 

border-width:1;border-color: black ; 

background-color:#999999;border-style:inset;text-color:blue;">
<table cellspacing="0" cellpadding="2">

<tr>
<TD>
Hot and sexy Singles <a href="http://www.google.com/" 

style="color:red">Preview</a>. Check out the <a 

href="http://www.google.com/" style="color:yellow">Store</a> and all 

the other cool features we have here at <a 

href="http://www.google.com/" style="color:green">ACME</a>.
<BR><BR>
Click <a href="http://www.google.com/">Here</a> for more info.
</tr>
</table>
</div>

<br><br><br>
<div style="overflow: auto; width: 480px; height: 80; padding:0px; 

margin: 0px; border-style:solid; border-width:1;border-color:grey; background-color:black;border-style:dotted;">
<table cellspacing="0" cellpadding="2">

<tr>
<TD>
Hot and sexy Singles <a href="http://www.google.com/" 

style="color:red">Preview</a>. Check out the <a 

href="http://www.google.com/" style="color:yellow">Store</a> and all 

the other cool features we have here at <a 

href="http://www.google.com/" style="color:blue">ACME.</a>
<BR><BR>
Click <a href="http://www.google.com/">Here</a> for more info.
</tr>
</table>
</div>

If you play with the border tags a bit you can get the highlighting also

Last edited by George Bush Jr.; 10-04-2003 at 09:17 PM..
George Bush Jr. is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 09:02 PM   #15
$hurik
Confirmed User
 
Industry Role:
Join Date: May 2003
Location: Manalapan, NJ
Posts: 853
Or you can do it in flash (http://envisionext.com) - flash takes all the text from *.txt file
$hurik is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-04-2003, 09:20 PM   #16
George Bush Jr.
So Fucking Banned
 
Join Date: Oct 2003
Location: The White House
Posts: 150
[B]WHOOPS
Code:
<div style="overflow: auto; width: 480px; height: 80; 

padding:0px; margin: 0px; border-style:solid; 

border-width:1;border-color: white ; 

background-color:#999999;border-style:inset;text-color:blue;">
<table cellspacing="0" cellpadding="2">

<tr>
<TD>
Hot and sexy Singles <a href="http://www.google.com/" 

style="color:red" onMouseover="document.bgColor='red'">Preview</a>. Check out the <a 

href="http://www.google.com/" style="color:yellow" onMouseover="document.bgColor='yellow'">Store</a> and all 

the other cool features we have here at <a 

href="http://www.google.com/" style="color:green" onMouseover="document.bgColor='green'">ACME</a>.
<BR><BR>
Click <a href="http://www.google.com/" onMouseover="document.bgColor='blue'" >Here</a> for more info.
</tr>
</table>
</div>

<br><br><br>
If you play with the border tags a bit you can get the highlighting also

Last edited by George Bush Jr.; 10-04-2003 at 09:38 PM..
George Bush Jr. is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.