Portal Engine Questions on portal engine and web parts.
Version 7.x > Portal Engine > Page Template layout View modes: 
User avatar
Guest
Jeanne - 10/18/2012 8:19:29 PM
   
Page Template layout
Hello,
I am creating a page template, but can't seem to get it laid out correctly. I would like to create a "banner" at the top of the page which will consist of 3 images. There will be 2 images on the left stacked on top of eachother and one image on the right that is the height of the left two images. In other words it is a table with 2 columns, but the left column is split into 2 rows.
No matter how I put this into the page template it just won't align the stacked left 2 images with the right image.
Any help would be appreciated.

User avatar
Member
Member
Ventrasoft - 10/18/2012 9:24:32 PM
   
RE:Page Template layout
Your best bet is to lay out using DIV's, multiple web parts and CSS.

<div class="header">
<div class="leftColumn">
"<CMS Webpart>"
</div>
<div class="rightColumn">
"<CMS Webpart>"
</div>
</div>

then in your CSS size the header div and then the left and right column div's. Don't forget to float the rightColumn and use a clear at the end.

User avatar
Member
Member
Ventrasoft - 10/18/2012 9:27:22 PM
   
RE:Page Template layout
I guess you could also just use one web part in one div and put a table in the HTML editable text editor, split the cells accordingly and set the alignment properties of each cell.

If you could post your code/markup it would help to give you the best answer.