I want a border on the centerColumn
Okay, no problem
.centerColumn {
border: 1px solid #cacaca;
margin: auto;
height: 100%;
}
but the problem is, that the centerColumn doesn't have the height of 100%.
How can I get the height of 100%?
I want a border on the centerColumn
Okay, no problem
.centerColumn {
border: 1px solid #cacaca;
margin: auto;
height: 100%;
}
but the problem is, that the centerColumn doesn't have the height of 100%.
How can I get the height of 100%?
thnx, but the border is in the left and right column on the bottom either this way...maybe try the border on #contentMainWrapper instead?
Find in YOUR_TEMPLATE/common/tpl_main_page.php:
In the <td valign="top"> add a new IDHTML Code:<div id="navColumnOneWrapper" style="width: <?php echo BOX_WIDTH_LEFT; ?>"><?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?></div></td> <?php } ?> <td valign="top"> <!-- bof breadcrumb --> <?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_home_page) ) { ?> <div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div> <?php } ?> <!-- eof breadcrumb -->
Then create the rules you want in your stylesheet.HTML Code:<td valign="top" ID="mainColumn">
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
In the <td valign="top"> add a new ID
HTML Code:
<td valign="top" ID="mainColumn">
Then create the rules you want in your stylesheet.
I did, but unfortunately
#mainColumn {
height: 100%;
}
No - don't add 100% add your border to that ID in your stylesheet
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.