A. I'd like to just have it gone and B. I'm using Joomla
I can remove it from the index.php file but then I have an empty white box (good start). I then want that white area gone and the POLLS section moved up in its place.
I removed the following from the CSS and it messed up my page. (lost my banner, buttons mixed up, etc. )
#poweredby {
float: left;
margin-left: 2px;
}
THANKS for the great template!!!
Edits in template_css.css
#banner_area { width: 468px; margin-top: 2px; margin-bottom: 1px !important; }
Edits in index.php in the dd_midnight folder Copy this code:
<?phpif ( mosCountModules ('banner') ) {
?>
<div id="banner_area">
<div id="banner">
<img src="<?php echo $mosConfig_live_site;?>/templates/dd_midnight/images/advertisement.png" alt="advertisement.png, 0 kB" title="advertisement" border="0" height="8" width="468"/><br />
<?php mosLoadModules( 'banner', -1 ); ?>
</div>
</div>
<?php
} ?>
and paste it below the line that looks like this:
<div class="sandbox_area">Find the line that looks like this:
<div id="content">And replace this code:
<?phpif ( mosCountModules ('banner') ) {
?>
<div id="banner_area">
<div id="banner">
<img src="<?php echo $mosConfig_live_site;?>/templates/dd_midnight/images/advertisement.png" alt="advertisement.png, 0 kB" title="advertisement" border="0" height="8" width="468"/><br />
<?php mosLoadModules( 'banner', -1 ); ?>
</div>
<div id="poweredby">
<img src="<?php echo $mosConfig_live_site;?>/templates/dd_midnight/images/powered_by.png" alt="powered_by.png, 1 kB" title="powered_by" border="0" height="68" width="165"/><br />
</div>
</div>
<?php
}
with this:
<?phpcloser...