Is there a way to set the width of a frameset such that my buttons in the frameset will be displayed without the other adjacent frameset blocking half of its view?
Frameset help!
Yes there is. If you have frames you should have something like
<FRAMESET COLS="75%,25%">
<FRAMESET ROWS="15%,85%">
In your code.
The above would make the first collum take up 75% of the web page and the second 25%. And the first Row 15% and the second row 85%. You could drop the % sign to set the width in pixels.
Hope that helps.
Michael
<FRAMESET COLS="75%,25%">
<FRAMESET ROWS="15%,85%">
In your code.
The above would make the first collum take up 75% of the web page and the second 25%. And the first Row 15% and the second row 85%. You could drop the % sign to set the width in pixels.
Hope that helps.
Michael
| Michael B wrote: |
| Yes there is. If you have frames you should have something like
<FRAMESET COLS="75%,25%"> <FRAMESET ROWS="15%,85%"> In your code. The above would make the first collum take up 75% of the web page and the second 25%. And the first Row 15% and the second row 85%. You could drop the % sign to set the width in pixels. Hope that helps. Michael |
Cheers I shall try that out and let you know !!!
| Michael B wrote: |
| Yes there is. If you have frames you should have something like
<FRAMESET COLS="75%,25%"> <FRAMESET ROWS="15%,85%"> In your code. The above would make the first collum take up 75% of the web page and the second 25%. And the first Row 15% and the second row 85%. You could drop the % sign to set the width in pixels. Hope that helps. Michael |
Thank you my friend!!!! It has worked!!!
