Me again! 
I've used an accordion menu jscript thing to show important notices on a page, which lays it out in an <ul>. thing is i want two, side by side, but every time i try using float:left things get mixed up. i've included the whole bit that displays one menu and the css, but what i want is two individually controlled menus
HTML Code:
<ul class="acc" id="acc">
<li>
<h3><center>Important Notices (click here to show/hide)</center></h3>
<div class="acc-section">
<div class="acc-content">
<?php include "rss/urgentnotices.php"; ?>
</div>
</div>
</li>
</ul>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript">
var parentAccordion=new TINY.accordion.slider("parentAccordion");
parentAccordion.init("acc","h3",0,0);
</script> and the css that accompanies it
PHP Code:
#acc {
width:457px;
list-style:none;
color:[URL=http://www.edugeek.net/misc.php?do=dbtech_usertag_hash&hash=033]#033[/URL]
margin:0 auto 40px
}
#acc h3 {
width:443px;
border:1px solid [URL=http://www.edugeek.net/misc.php?do=dbtech_usertag_hash&hash=6f9387]#6f9387[/URL]
padding:6px 6px 8px;
font-weight:bold;
margin-top:5px;
cursor:pointer;
background:url(images/header.jpg)
}
#acc h3:hover {
background:url(images/header_over.jpg)
}
#acc .acc-section {
overflow:hidden;
background:#fff
}
#acc .acc-content {
width:425px;
padding:15px;
border:1px solid [URL=http://www.edugeek.net/misc.php?do=dbtech_usertag_hash&hash=9ac1c9]#9ac1c9[/URL]
border-top:none;
background:#fff
}
is it possible to have them both on the same line, but centred (so the two will not align from the left but from the centre yet the text in them is still normally aligned?
as an addition, i have a footer.php (and footer in css) that keeps rising up if i use float:left on the menus. but they seem to be fixed by using clear:both in css for the footer, is that the correct method?