PDA

Click to See Complete Forum and Search --> : These two things are...


ExtremePimpness
Mar 15th, 2001, 04:48 AM
Ok i have two things i need to do

#1) i want to make it so that when you click on any part
of any cell in a row it will take you to a site
designated for that row

#2) I need to have a way to load a text file into a
template style web page so that alot of links led to
the page but depending on what perameters were
sent it will load a specific file.

Note: I am not very good at writing html or subsideraries but i can edit to my liking so any examples or cgi files are appriciated.

THis is the html page that it will be applied to if it helps to see what needs to be done:D

Site (http://www.slammeddesigns.f2s.com/VBCode.html)

Thanks in advance

E.P.

Mark Sreeves
Mar 15th, 2001, 06:29 AM
put onClicks in the <TR> or <TD> tags

(this only works with IE)

<HTML>

<BODY>
<table border=1>
<TR>
<TD onClick="window.location='http://forums.vb-world.net'">vb-world</TD><TD>&nbsp</TD>
</TR>
<TR>
<TD>&nbsp</TD><TD>&nbsp</TD>
</TR>
</table>
</BODY>
</HTML>



Q2 needs explaining a bit more please....

ExtremePimpness
Mar 15th, 2001, 06:32 AM
thanks that is what i was looking for:D

ExtremePimpness
Mar 15th, 2001, 06:36 AM
for the second ? i want to have the links in my code archive to load on a universal html doc but load a different text file depending on the sniplet name so that if i load the showsniplet.html from a link i can add some sort of command line perameter that will tell it which txt file to load in the body:D

ExtremePimpness
Mar 15th, 2001, 06:59 AM
also i was wondering isf there was a way to get rid of the default ibeam cursor when you mouse over text. that would improve the look of my site alot:D

sail3005
Mar 15th, 2001, 04:01 PM
you should be able to get rid of the Ibeam cursor like this:


<style type="text/css">
BODY {cursor: whatever cursor;}
</style>

ExtremePimpness
Mar 15th, 2001, 06:35 PM
what do you put there for the arrow

sail3005
Mar 15th, 2001, 07:03 PM
These are the possible values for the cursor attribute:


auto
crosshair
default
hand
move
e-resize
ne-resize
nw-resize
n-resize
se-resize
sw-resize
s-resize
w-resize
text
wait
help


Default is what you are probably looking for, but you may want to experiment for some cool effects.

ExtremePimpness
Mar 16th, 2001, 02:38 AM
thanks

Do you know anything about the second question in my first post?

sail3005
Mar 16th, 2001, 02:22 PM
well i don't know Perl, if that is what you want it done in. But i could do it in ASP and probably PHP too! :)

ExtremePimpness
Mar 16th, 2001, 02:24 PM
my site supports any of the above:D