I like to add a module position “bottom” for a small inline menu which sits right to the logo on the left and in the line above “copyright”:
[FONT=”Courier New”]
+——–+ menu item 1 | menu item 2 | menu item 3 +——-+ +——+ +——-+
|..logo..| Copyright 2005-2007 Company name……..|..css..| |..rss.| |..top..|
+——–+…………………………………..+——-+ +——+ +——-+
[/FONT]
I tried to insert a module position in index.php:
[FONT=”Courier New”]
<div id=”ja-footer”>
<div id=”ja-sublogo”>
<a href=”index.php”> <img src=”<?php echo $ja_template_path;?>/images/sub-logo.gif” alt=”<?php echo $mosConfig_sitename?>” /> </a>
</div>
<?php mosLoadModules(‘bottom’, -2); ?>
<p id=”ja-bottomline”>Copyright © <?php echo mosCurrentDate( ‘2005 – %Y’ ) . ‘ ‘ . $GLOBALS[‘mosConfig_sitename’];?>. </p>
<div id=”ja-cert”>[/FONT]
When I publish the module, the copyright line and the cert-icons disappear.
One workaround was to code the css:[FONT=”Courier New”]
#ja-footer div.moduletable {
position: absolute;
top: 14px;
left: 20%;
width: 60%;
}[/FONT]
This leads to showing the menu but without the font attributes assigned in “mainmenu-bot”.
Any ideas?
Best wishes – Bill