Manuel
|
| Posted: 03/10/2005, 8:01 PM |
|
Does anybody know if it is possible to define an includable page, wich can be used vertically?
|
|
|
 |
peterr
Posts: 5971
|
| Posted: 03/10/2005, 11:18 PM |
|
Sure, you can create a table and include pages in vertical columns, horizontal spaces, single cells, or above, below, to the left of the table. You have as much flexibility as HTML allows.
Our main support page at http://support.yessoftware.com/support_new.asp has a veritcal menu that is included as a separate page.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
DonB
|
| Posted: 03/11/2005, 5:29 AM |
|
Actually, this is independent of whether it's something that is included or
not. What you need to look into is CSS layout directives. You can search
Google for "box model" and find this discussed in numerous places.
You can define <DIV> and/or <SPAN> blocks in your html, and assign them
position and size attributes that place them appropriately on the page.
For example, let's say your html contains two <DIV> blocks: #1 contains your
"vertical include", #2 is whatever else you want on the page.
<DIV style="position: absolute; top: 0; left: 0; height: 640px;
width:100px">{Include1}</DIV>
<DIV style="position: absolute; top: 0; left: 0; margin-left: 100px; height:
640px; width:700px">{Include2}</DIV>
--
DonB
http://www.gotodon.com/ccbth
"Manuel" <Manuel@forum.codecharge> wrote in message
news:2423118334eae4@news.codecharge.com...
> Does anybody know if it is possible to define an includable page, wich can
be
> used vertically?
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
mrincon
Posts: 14
|
| Posted: 03/11/2005, 6:26 PM |
|
Thanks too much for your help sirs.
_________________
Manuel Rincon
Colombia |
 |
 |
|