www.countrydayschoolbr.com is the website I am working on. I am editing a Joomla! template that mostly works for what they want. What I want is for the top three things to be left center and right, instead of stacked on top of each other. The logo on the left, random image in the center, then newsflash on the right. I have tried but I can't seem to make anything work. This is probably due to me having 0 php knowledge. It seems like it should be simple and I know it will fit. This is the code in question:
The header part is the logo. The user 5 refers to the random image. The user 1 refers to the newsflash box.
Also if anyone can give advice as to how to add a backgrount to the user 1 and user 5 portion so it actually matches the rest of the page that would be helpful as that is my next project. I am assuming that will be taken care of in the css. That is a whole other bag of beans. Oh and if someone knows a good php or css cheat sheet site that says "x code will do this" that would help. I feel like an idiot right now with the amount of time I have spent trying to make this work. Thanks.
Code:
</td>
<td class="wrapper">
<div id="header"></div>
<?php mosLoadModules ( 'user5' ); ?>
<?php if (mosCountModules('user1')) { ?>
<table class="opentable" width="150" id="flashbox">
<tr valign="top"><td class="topflash"> </td></tr>
<tr valign="top"><td class="midflash"><?php mosLoadModules('user1'); ?></td></tr>
<tr valign="top"><td class="botflash"> </td>
</tr>
</table>
<?php } ?>
<div id="contentarea">
Also if anyone can give advice as to how to add a backgrount to the user 1 and user 5 portion so it actually matches the rest of the page that would be helpful as that is my next project. I am assuming that will be taken care of in the css. That is a whole other bag of beans. Oh and if someone knows a good php or css cheat sheet site that says "x code will do this" that would help. I feel like an idiot right now with the amount of time I have spent trying to make this work. Thanks.