I can't figure out how to make it work...everything I see says to put it just like I have it but it doesn't work. Anyone know what's wrong with this?
Quote
<html>
<frameset cols="25%,75%">
<frame src="kaleesphotography.com/framestest.htm">
<frame src="kaleesphotography.com/test.htm">
</frameset>
</html>
This is all I get: http://kaleesphotography.com/framestest2.html
I don't get it but this is my first real html project so I'm sure it's just inexperience. I'm trying to get this setup for my fiance...
Frames are bad. Use CSS to get the look you want. Start here: http://www.w3.org/MarkUp/Guide/
yeah more I think about itI don't think it'll work. i'm just trying to set it up so that her website (kaleesphotography.com) has links off to the left side of the centered pic...just haven't figured out how to do that yet...
The problem MIGHT be in the "links" you've told the frames to find...
if that HMTL page is located within the same directory as the "target" pages, try removing the "kaleesphotography.com/".
oko i tried that and all i have now is;
http://kaleesphotography.com/framestest2.html
just garbled stuff...
<html>
<frameset cols = "25%, 25%,*">
<frame src ="venus.htm" />
<frame src ="sun.htm" />
<frame src ="mercur.htm" />
</frameset>
</html>
Looks like you forgot the " /" behind each frame page.
I actually had...so i added it...but I didn't get a different result...
<html>
<frameset cols="25%,75%">
<frame src="framestest.html" />
<frame src="test.html" />
</frameset>
</html>
anything specifically wrong there?
hmm try
<html>
<frameset cols="25%,75%">
<frame name="frametest" src="framestest.htm">
<frame name="test" src="test.htm">
</frameset>
</html>
, idk its worth a shot.
darn you bet me to it :laugh:
what CndnMax has there should work fine.....
if only u were 2 min earlier, i still would of beat you but it would of been a closer call :laugh: :laugh:.
copies the text straight over and still get jarbled stuff...
http://kaleesphotography.com/framestest2.html
You're not trying to do HTML in MS WORD... are you?
You've got to do it in NOTEPAD in order for it to work... Somehow there's some MS coding in there...
saved as html though
I'll do it through notepad...but i was doing it through notepad alast night with no change...
the code i gave you should work just fine in notepad.
butI obviously didn't try it max's way last night in notepad...it works now.
Now i just have to doctor it and get rid of the scroll bar stuff and what not....
Yup, it's live :thumb: :thumb:
glad it worked :thumb:
Cool
yup I really appreciate it
ok now the little guide i'm reading says to add noresize="noresize" to the <frames> tag...I've tried two different configurations and can't get either to work properly. any advice?
<html>
<frameset cols="25%,75%" noresize="noresize">
<frame name="frametest" src="framestest.htm">
<frame name="test" src="test.htm">
</frameset>
</html>
**
<html>
<frameset cols="25%,75%">
<frame name="frametest" src="framestest.htm">
<frame name="test" src="test.htm">
<noresize="noresize">
</frameset>
</html>
I'll add that the idea is to disable the resizing abiliity and to remove the scroll bars except on the far right...of course i'm assuming that the to remove the scroll bar in the middle you have to have that particular menu smaller than the main frame.
figured it out! haha I'm a badass with proper guiudance...
was it in the <frame> instead of the <frameset> tag?
hadto set it up like this:
Quote
<html>
<frameset cols="25%,75%">
<frame name="frametest" src="framestest.htm" noresize="noresize">
<frame name="test" src="test.htm" noresize="noresize">
</frameset>
</html>
...which made perfect sense after i thought about it for a second.
I'm trying to figure out her menu thing now though...which it's consistantly putting up only two options aand leving the first option and title off. if you copy the link location from the first link (viewed on the apge) it has the html from the missing link in it. I don't see what's wrong with it...I've tried making all three options indentical and it'snot cooperative...
Quote<html>
<body bgcolor="#c0c0c0">
<body>
<title>Your Options</title>
<p> <a href="http://photoartclub.net/> Nature Gallery </a> </p>
<p> <a href="http://photoartclub.net/forums/> Pets Gallery </a> </p>
<p> <a href="http://photoartclub.net/cx500/> Portraits Gallery </a> </p>
</body>
</html>
http://kaleesphotography.com/framestest.htm
try this
<html>
<title>your option</title>
<body bgcolor="#c0c0c0">
<p>
<a href="http://photoartclub.net"> Nature Gallery</a> <br>
<a href="http://photoartclub.net/forums"> Pets Gallery </a> <br>
<a href="http://photoartclub.net/cx500"> Portraits Gallery </a> </p>
</body>
</html>
--the title tags are for the title bar in the browser, if u want to have a title on the page use heading tags- you probably already know this but just making sure.
a little late, but here's reference:
http://www.htmlcodetutorial.com/frames/frames_famsupp_5.html (main tutorial)
http://www.htmlcodetutorial.com/frames/frames_famsupp_11.html (frame targets)
http://www.htmlcodetutorial.com/frames/frames_famsupp_31.html (target whole window)
http://www.htmlcodetutorial.com/frames/frames_famsupp_15.html (should frames be used?)
http://www.htmlcodetutorial.com/frames/frames.html (all frame tutorials)
Quote from: CndnMax on June 30, 2007, 11:45:48 PM
try this
<html>
<title>your option</title>
<body bgcolor="#c0c0c0">
<p>
<a href="http://photoartclub.net"> Nature Gallery</a> <br>
<a href="http://photoartclub.net/forums"> Pets Gallery </a> <br>
<a href="http://photoartclub.net/cx500"> Portraits Gallery </a> </p>
</body>
</html>
--the title tags are for the title bar in the browser, if u want to have a title on the page use heading tags- you probably already know this but just making sure.
I'm real rusty on my HTML, but isn't the <P> tag only a singular tag? You don't need to close it. It's used to go to the next line... just like a carriage(sp) return.
thanks max and an...now I gotta figure out the targets thing.
I'll work on it more tonight. the targets thing doesn't look too difficult.
Quote from: annguyen1981 on July 01, 2007, 06:06:06 AM
I'm real rusty on my HTML, but isn't the <P> tag only a singular tag? You don't need to close it. It's used to go to the next line... just like a carriage(sp) return.
you probably don't need to close it, but its better to do it. a <p> tag is basically to start a new paragraph- it will double space if i remember well. <br> tag is like hitting enter-its single spaced.
Quote from: makenzie71
thanks max and an...now I gotta figure out the targets thing.
I'll work on it more tonight. the targets thing doesn't look too difficult.
no problem :thumb:. targets are really easy to do, all you do is give the target a name and link to it.
Here is how I set up html.
h
t
m
l
:laugh:
I never could grasp the html code left me pissed off and confused for days.