anyone knows how to put text in a frame cuz im stuck at it. plz i need help.i give 30 frih$ for the one that knows
help plz
You can't put text i a frame, only files.
The 1st code creates a horizontal dividing line,
the 2nd code creates a vertical dividing line.
Hope that helps.
| Code: |
| <frameset rows=400,*>
<frame src="file1.htm"> <frame src="file2.htm"> </frameset> |
| Code: |
| <frameset cols=400,*>
<frame src="file1.htm"> <frame src="file2.htm"> </frameset> |
The 1st code creates a horizontal dividing line,
the 2nd code creates a vertical dividing line.
Hope that helps.
thnx man i will stort 30 firh$ on your user for the help. 
| TomS wrote: | ||||
You can't put text i a frame, only files.
The 1st code creates a horizontal dividing line, the 2nd code creates a vertical dividing line. Hope that helps. |
ok i have storted it hope u happy with it
Thanks for the "money", but that would not have been necessary.
If I can help, I do it. Why not?!
So don't be afraid to ask anything, even if it sounds stupid to you.
If I know the answer, I tell it to you.
Hey, what about posting your website?
I would like to take a look on it (if there is already content).
If I can help, I do it. Why not?!
So don't be afraid to ask anything, even if it sounds stupid to you.
If I know the answer, I tell it to you.
Hey, what about posting your website?
I would like to take a look on it (if there is already content).
or you could use iframes as you can navigate between them
then to open a different page in the same frame make a link including:
make sure you replace target="link1" to the name of your frame!
| Code: |
| <iframe name="link1" src="index1.htm"> </iframe> |
then to open a different page in the same frame make a link including:
| Code: |
| <a href="index2.htm" target="link1">click here</a> |
make sure you replace target="link1" to the name of your frame!
