I want to move the search to another position and put another short menu in the user4 position, but apparently it’s been hardcoded into the index.php file.
it is a style, so I think that I can change the style on the user4 div, but I don’t know what to change it to… each style I’ve tried breaks the page layout.
anyone got an answer for me?
thanks
here’s the code:
<!– BEGIN: HEADER –>
<div id=”ja-header”>
<h1 class=”logo”><a href=”index.php” title=”<?php echo $mosConfig_sitename?>”><?php echo $mosConfig_sitename?></a></h1>
<div id=”ja-mainnav”>
<?php
//Gen menu for CSS, MOO
//Gen first level menu for Split, Dropline
$jamenu->genMenu (0);
?>
</div>
<?php if (mosCountModules(‘user4’)) { ?>
<div id=”ja-search”>
<?php mosLoadModules(‘user4’, -1); ?>
</div>
<?php } ?>
<?php if ($ja_tool) { ?>
<div id=”ja-usertoolswrap”>
<div id=”ja-usertools” class=”clearfix”>
<?php //genToolMenu($ja_tool & 3); ?>
</div></div>
<?php } ?>
</div>
<!– END: HEADER –>