What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » HTML Help....

HTML Help....
Author: Message:
M73A
Veteran Member
*****

Avatar


Posts: 3213
Reputation: 37
34 / Male / Flag
Joined: Jul 2004
O.P. HTML Help....
i've got a site and what i would like to do is have a main page with the menu on etc etc... and have each page of the site appear in the center of the main page using iframe....

i was just wondering is it possible to have the menu buttons change the page in the iframe instead of the main page...

Thanks

[Image: lost7ru.gif]
11-10-2005 10:29 PM
Profile E-Mail PM Find Quote Report
Dempsey
Scripting Contest Winner
*****

Avatar
http://AdamDempsey.net

Posts: 2395
Reputation: 53
37 / Male / Flag
Joined: Jul 2003
RE: HTML Help....
code:
<a href="page.htm" target="iframeName">Link Name</a>
SoundPacks   -   Scripts   -   Skins

that's not a bug, thats an unexpected feature
11-10-2005 10:32 PM
Profile E-Mail PM Web Find Quote Report
M73A
Veteran Member
*****

Avatar


Posts: 3213
Reputation: 37
34 / Male / Flag
Joined: Jul 2004
O.P. RE: HTML Help....
quote:
Originally posted by Dempsey
code:
<a href="page.htm" target="iframeName">Link Name</a>


aha :D thank you loads... i thought was going to have to use javascript or something but hey... what does a newb know:P

also: you wouldn't happen to have any tips on making rounded corners on tables.... ive got the pictures but im not sure how to put the as the corner of the table... the just go inside it...  i know it can be done with <div> and css but i would prefer it be done on a table... if possible:)

This post was edited on 11-10-2005 at 10:52 PM by M73A.

[Image: lost7ru.gif]
11-10-2005 10:44 PM
Profile E-Mail PM Find Quote Report
Dempsey
Scripting Contest Winner
*****

Avatar
http://AdamDempsey.net

Posts: 2395
Reputation: 53
37 / Male / Flag
Joined: Jul 2003
RE: HTML Help....
You can do it using CSS, i do it on MPSounds.net.

If you have a table 3 cells wide and 3 cells high, then you have 8 CSS classes, similar to the following:
code:
.tableCorTL {
    background-image: url(./images/corTL.gif);
    background-repeat: no-repeat;
    margin: 0px;
    padding: 0px;
    height: 10px;
    width: 10px;
    background-position: bottom;
}.tableEdgeT {
    background-image: url(./images/edgeT.gif);
    background-repeat: repeat-x;
    margin: 0px;
    padding: 0px;
    height: 10px;
    background-position: bottom;
    vertical-align: bottom;
}.tableCorTR {
    background-image: url(./images/corTR.gif);
    background-repeat: no-repeat;
    margin: 0px;
    padding: 0px;
    height: 10px;
    width: 10px;
    background-position: bottom;
}

Thats the three CSS classes I use for the three top cells, then in the top left cell for example, you would use
code:
<td class="tableCorTL">
and then it would have the corner image in.

Is that what you mean?  If you have any more questions, reply with them. :)
SoundPacks   -   Scripts   -   Skins

that's not a bug, thats an unexpected feature
11-11-2005 08:54 AM
Profile E-Mail PM Web Find Quote Report
M73A
Veteran Member
*****

Avatar


Posts: 3213
Reputation: 37
34 / Male / Flag
Joined: Jul 2004
O.P. RE: HTML Help....
quote:
Originally posted by Dempsey
You can do it using CSS, i do it on MPSounds.net.

If you have a table 3 cells wide and 3 cells high, then you have 8 CSS classes, similar to the following:
code:
.tableCorTL {
    background-image: url(./images/corTL.gif);
    background-repeat: no-repeat;
    margin: 0px;
    padding: 0px;
    height: 10px;
    width: 10px;
    background-position: bottom;
}.tableEdgeT {
    background-image: url(./images/edgeT.gif);
    background-repeat: repeat-x;
    margin: 0px;
    padding: 0px;
    height: 10px;
    background-position: bottom;
    vertical-align: bottom;
}.tableCorTR {
    background-image: url(./images/corTR.gif);
    background-repeat: no-repeat;
    margin: 0px;
    padding: 0px;
    height: 10px;
    width: 10px;
    background-position: bottom;
}

Thats the three CSS classes I use for the three top cells, then in the top left cell for example, you would use
code:
<td class="tableCorTL">
and then it would have the corner image in.

Is that what you mean?  If you have any more questions, reply with them. :)

exactely what i mean :D Thanks... thanks for all the help btw... (y)

[Image: lost7ru.gif]
11-15-2005 05:25 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On