A dica que voce me deu ja ajudou bastante. Veja novamente o o header do forum no link passado acima.
estou tentando encaixar as 3 colunas "logomarca","centrotop","lateraltop"
logomarca e lateral seguirá a logica que vc indicou, e no centro ficara o nome, desc e etc do site.
Não estou conseguindo alinha-las no top, sobrando assim um espacao na parte de baixo, e em cima tbm.
como posso ajustar isso?
abaixo segue os codigos onde estou mexendo.
overall.html
Código: Selecionar todos
<div class="logomarca" >
<div id="site-description">
<div class="header-pad"><a href="{U_INDEX}" title="{L_INDEX}" id="logo"></a></div>
<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
</div>
</div>
<div class="centrotop">
<h1 class="site-desc" >{SITENAME}</h1>
<h3 class="site-descA"> POPULAR </h3>
<p class="site-descB" >{SITE_DESCRIPTION}</p>
</div>
<!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH -->
<div class="lateraltop">
<div id="search-box">
<form action="{U_SEARCH}" method="post" id="search">
<fieldset>
<input name="keywords" id="keywords" type="text" maxlength="128" title="{L_SEARCH_KEYWORDS}" class="inputbox search" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" />
<input class="button2" value="{L_SEARCH}" type="submit" /><br />
{S_SEARCH_HIDDEN_FIELDS}
</fieldset>
</form>
</div>
Código: Selecionar todos
#search-box {
color: #FFFFFF;
position: relative;
margin-right: 5px;
display: block;
float: right;
text-align: right;
white-space: nowrap; /* For Opera */
width:240px;
top:-150px;
}
.logomarca {
float: left;
width: 180px;
padding: 15px 0;
}
.logomarca h3,.logomarca p {
margin-left: 10px;
margin-right: 10px;
}
.centrotop {
margin: 0 0 0 190px;
width:350px;
}
.lateraltop {
margin: 0 0 0 260px;
}
.site-desc {
position:relative;
marging-bottom: 0px;
/* padding left has to be changed to 25px if there is no blank space on the left side of the site logo */
}
.site-descA {
position:relative;
top:-20px;
marging-bottom: 0px;
color:#224A95;
font-weight:bolder;
font-size:3.9em;
/* padding left has to be changed to 25px if there is no blank space on the left side of the site logo */
}
.site-descB {
position:relative;
marging-bottom: 0px;
color: #818181;
font-weight:bolder;
font-size:2.3em;
/* padding left has to be changed to 25px if there is no blank space on the left side of the site logo */
}