Well, just to fix it to justify at the right side, I added this to the stylesheet:
Code:
#navColumnTwoWrapper {
float:right;
}
However, I also modified the tpl_header.php file as follows to put the login box up there in the first place:
Code:
<!--bof-navigation display-->
<div id="navMainWrapper">
<?php
if (!isset($flag_disable_header) || !$flag_disable_header) {
?>
<?php
if (COLUMN_RIGHT_STATUS == 0 or (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '')) {
// global disable of column_right
$flag_disable_right = true;
}
if (!isset($flag_disable_right) || !$flag_disable_right) {
?>
<td id="navColumnTwo" class="columnRight" style="width: <?php echo COLUMN_WIDTH_RIGHT; ?>">
<?php
/**
* prepares and displays right column sideboxes
*
*/
?>
<div id="navColumnTwoWrapper" style="width: <?php echo BOX_WIDTH_RIGHT; ?>"><?php require(DIR_WS_MODULES . zen_get_module_directory('column_right.php')); ?></div></td></table>
<?php
}
?>
<div id="navMain">
followed by the code for my sliced header. I think that's all I did, but this has been about a 4 day project off and on, so I could have forgotten something. I'll know in just a bit because I'm setting the store up on a different domain with 1.3.8 and plan to apply the same modifications to these files.
BTW, I'm mostly a trial-and-error learner so if there was a more efficient way to accomplish this, please feel free to enlighten me.