Shoutbox

HTML Help.... - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: HTML Help.... (/showthread.php?tid=52824)

HTML Help.... by M73A on 11-10-2005 at 10:29 PM

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


RE: HTML Help.... by Dempsey on 11-10-2005 at 10:32 PM

code:
<a href="page.htm" target="iframeName">Link Name</a>

RE: HTML Help.... by M73A on 11-10-2005 at 10:44 PM

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:)
RE: HTML Help.... by Dempsey on 11-11-2005 at 08:54 AM

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. :)
RE: HTML Help.... by M73A on 11-15-2005 at 05:25 PM

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)