
Originally Posted by
novinfard
Thanks
yes, that's right.
Can you help me by explain some more details about this issue?
Ok.. First of all the layout needs fixing. The style should be xhtml and not jaxhtml.
HTML Code:
<blocks name="middle" colwidth="20">
<block name="right1" style="xhtml">home1</block>
<block name="right2" style="xhtml">right</block>
<block name="left2" style="xhtml">main</block>
</blocks>
The HTML this output should look like this
HTML Code:
<div id="ja-container">
<div class="main">
<div id="ja-mainbody">
<div id="ja-main"></div> <!-- Main Content Area -->
<div id="ja-left2"></div> <!-- Left Column (left2) Area -->
</div>
<div id="ja-right">
<div id="ja-right1"></div> <!-- Right Column (right1) Area -->
<div id="ja-right2"></div> <!-- Right Column (right2) Area -->
</div>
</div>
</div>
Once you've done this you can set the styling for them in your css file.
Code:
#ja-mainbody {width: 60% !important;} /* Holds the content area and left area */
#ja-right {width: 40% !important;} /* Holds both right areas */
#ja-main {width: 66.66% !important;} /* This is for the content area */
#ja-left {width: 33.33% !important;} /* Holds both left areas */
#ja-left2 {width: 100% !important;} /* This is for the left2 area */
#ja-right1 {width: 20% !important;} /* This is for the right1 area */
#ja-right2 {width: 20% !important;} /* This is for the right2 area */
It going to look like this:
Code:
| LEFT2 | MAIN CONTENT | RIGHT1 | RIGHT2 |
You might have to do some adjustments to the percentages depending on your styling, but this should do the trick.
I hope this helps,
Winchester
Bookmarks