LSD IS ALIVE!

All off topic discussions go here. Everything from the funny thing your cat did to your favorite tv shows. Non-programming computer questions are ok too.
Post Reply
mr-t

LSD IS ALIVE!

Post by mr-t »

Yeah, L-S-D Studios hasn't being updated since last year... until NOW!!!

www.1337software.tk

;D
mr-t

Re:LSD IS ALIVE!

Post by mr-t »

BTW, the Fuulong Moon site is uploading as I type :D
mr-t

Re:LSD IS ALIVE!

Post by mr-t »

OK, The Fuulong Moon site is there. Also added a CSS sheet, email me if you have any problems.
mr-t

Re:LSD IS ALIVE!

Post by mr-t »

I'm having a bit of a problem with frames. I put links in the frame, but when I click them, the link opens in that frame and not the main window.

Any help? :-*
Joey

Re:LSD IS ALIVE!

Post by Joey »

notice how you are the only person posting on this thread? :P
Kon-Tiki

Re:LSD IS ALIVE!

Post by Kon-Tiki »

Frames need to point to the body. This's the code I use in mine:
In frame.html:

Code: Select all

<head>
   <title>The rotten spot of the Potato.</title>
   <base target="rechts">
</head>
In index.html:

Code: Select all

<html>
<head>
<title>
The rotten spot of the Potato.
</title>
</head>

<frameset framespacing="0" border="0" frameborder="0" cols="20%, 75%">
        <frame name="links" scrolling="auto" TARGET="rechts"
src="frame.html">
        <frame name="rechts" scrolling="auto" TARGET="_self"
src="body.html">
<noframes>
        <body>
        Your browser doesn't support frames. Try getting some up-to-date
        stuff.
        </body>
</noframes>
</frameset>
</html>
Rechts = Right
Links = Left

It's all actually self-explaining once you carefully read through the code.

-Kon-Tiki-
mr-t

Re:LSD IS ALIVE!

Post by mr-t »

Wow, that works great! Thanks Raf!

BTW, someone calling himself "UNCLE_DENNIS" keeps on bugging me about the website... :-\
Eero Ränik

Re:LSD IS ALIVE!

Post by Eero Ränik »

Hmm, I would visit the site, but having 3 popups per page is bad... When you're using dot.tk then you can at least turn popups off...
mr-t

Re:LSD IS ALIVE!

Post by mr-t »

How? don't you have to pay for that?
smartguy240

Re:LSD IS ALIVE!

Post by smartguy240 »

mr-t

Re:LSD IS ALIVE!

Post by mr-t »

I meant how do you turn popups off using .tk chief
Eero Ränik

Re:LSD IS ALIVE!

Post by Eero Ränik »

Go to "Dot TK Linker Promo" under "My Marketing". Choose your domain and then choose "No, thanks, I don't want to have a banner on my website. I am not interested in being selected for a review on Dot TK's website or a great Dot TK Polo Shirt."
mr-t

Re:LSD IS ALIVE!

Post by mr-t »

Thanks buddy ;D
smartguy240

Re:LSD IS ALIVE!

Post by smartguy240 »

your welcome :)
Post Reply