vorrei mettere un banner a sx un logo al centro ed un banner sulla dx
Le ho provate tutte ma non ci sto riuscendo. E' una soluzione fattibile opppure è impossibile?
layout.css
/* header
****************************/
div#header
{ height: 90px; font-size: 0.85em; line-height: 155%; border-bottom: 1px solid #fff; position: relative; }
div#header div#topmod
{ height: 90px; width: 120px; /*float: left;*/ position: absolute; top: 0; left: 0; background: #ffffff; overflow: auto; }
div#header div#topmod .article_separator
{ display: none; }
/* module layout -> template_css.css */
/*{ position: relative; left: 121px; margin: 0 121px 0 0; height: 90px; background: url(../images/header-image.png) left 0 no-repeat; }*/
div#header div#image
{ position: relative; left: 121px; margin: 0 121px 0 0; height: 90px; background: url(../images/header-image.png) left 0 no-repeat; }
div#header div#image h2#slogan
{ position: absolute; right: 10px; bottom: 5px; margin: 0; color: #fff; font-size: 1.3em; letter-spacing: 0.05em; font-family: Arial, Trebuchet MS, Verdana, Geneva, Helvetica, sans-serif }
index.php
<div id="page-r">
<!-- header -->
<div id="header">
<!-- topmodule -->
<div id="topmod" <?php if ($this->params->get('topmodule') == 'welcome') : ?>class="welcome"<?php endif; ?>>
<?php if ($this->params->get('topmodule') == 'module') : ?>
<jdoc:include type="modules" name="top" style="68portal_left" />
<?php endif; ?>
<?php if ($this->params->get('topmodule') == 'welcome') : ?>
<div class="moduletable">
<?php if ($this->params->get('welcomehead') != '') : ?>
<h3 class="welcome_heading">
<?php echo $this->params->get('welcomehead'); ?>
</h3>
<?php endif;
if ($this->params->get('welcometext') != '') : ?>
<p class="welcome_text">
<?php echo $this->params->get('welcometext'); ?>
</p>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
<!-- //topmodule -->
<!-- headerimage -->
<div id="image">
<?php if ($this->params->get('slogan') != '') : ?>
<h2 id="slogan">
<?php echo $this->params->get('slogan'); ?>
</h2>
<?php endif; ?>
<?php middleBody(); ?>
<!-- content -->
<div id="content">
<?php if($this->countModules('left')) : ?>
<!-- left sidebar -->
<div id="left-sidebar">
<jdoc:include type="modules" name="left" style="68portal_left" />
</div>
<!-- //left sidebar -->
<?php endif; ?>
<!-- top header -->
<div id="top-header">
<!-- codice logo -->
<jdoc:include type="modules" name="user3" />
</div>