Danke für eure Hilfe...
Im Prinzip stimmt Bleistifts Antwort zwar, jedoch ist sie bei mir nicht ganz Anwendbar, da das endgültige Design noch erweitert ist und Joomla den Inhalt eines DIVs oder Position vor dem nächsten DIV einfügt...
Der Vollständigkeit halber hier noch kurz meine Lösung...
<div id="content">
<div id="comsearch">
<div id="search"><jdoc:include type="modules" name="right-up" style="xhtml" /></div><!--#search-->
<div id="component"><jdoc:include type="component" style="xhtml"/></div><!--#component-->
</div>
<div id="menu"><jdoc:include type="modules" name="left-up" style="xhtml" /></div><!--#menu-->
<div id="login"><jdoc:include type="modules" name="left-down" style="xhtml" /></div><!--#login-->
</div><!--#content-->
Ich habe einfach noch ein DIV nur für den component und search Inhalt gemacht, da vorhin auch noch das Menü und das Login in content waren.
Da nun search zuerst kommt bleibt es auch oben.
CSS:
div#content {
width: 900px;
}
div#comsearch {
float: right;
width: 664px;
height: 619px;
overflow: auto;
background-color: white;
}
div#search {
width: 300px;
float: right;
padding-right: 4px;
height: 50px;
padding-top: 20px;
text-align: right;
padding-right: 20px;
}
div#component {
padding-left: 10px;
padding-right: 20px;
padding-top: 5px;
}
Danke für die Hilfe nochmals