That put it below the menu.div....
Here is my PHP
<div id="menu-bar">
<div class="wrapper">
<div id="horiz-menu" class="<?php echo $mtype; ?>">
<?php if($mtype != "module") :
echo $mainnav;
else: ?>
<jdoc:include type="modules" name="toolbar" style="none" />
<?php endif; ?>
<?php if ($this->countModules('user7')) : ?>
<div class="search">
<jdoc:include type="modules" name="user7" style="xhtml" />
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
=====================================================
And here is my CSS:
div.search {
text-align: right;
width: 25%;
}
=====================================================
I am trying to get my Search div to be right aligned in the wrapper, but with text-align, it moves it below the menu and is left aligned.... when I use float right, it stacks the button under the search box instead of to the right of it.... and I also want to align this to be centered vertically based on the wrapper height, but that can be done with padding I guess....