← HTML + CSS

Alteração na Head

Lida 2114 vezes

Offline

Celso Azevedo 
Membro
Mensagens 3500 Gostos 38
Feedback +12

Troféus totais: 32
Trófeus: (Ver todos)
Level 6 Tenth year Anniversary Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3

Olá, no meu site www.telemovelonline.com, queria fazer uma alteração da head.

No topo fica a data e um link para subscrever via feed/mail:


Aquilo que quero fazer é tirar estas coisas e colocar no centro alguns links, para ficar assim:


O Codigo da Head é este:
Código: [Seleccione]
<body>

<div id="wrapper">

<div id="top"><div id="date"><?php the_time('j \d\e F \d\e Y'); ?></div><div id="subscribe"><a href="http://telemovelonline.com/subscrever-feeds/">Subscrever Feed/Newsletter</a></div></div>

<div id="header">

<div id="title">
[continua...]
O Codigo CSS é este:
Código: [Seleccione]
body{background:#d1dee7 url(images/fundo.gif) repeat-x;color:#000000;font-size:12px;font-family:Arial,Tahoma;margin-bottom:10px;}
#wrapper{width:916px;margin:0 auto;}
#top{background:url(images/topbg.png) repeat-x;height:20px;width:916px;}
#date{float:left;padding-left:20px;padding-top:3px;}
#subscribe{float:right;padding-right:20px;padding-top:3px;}
#subscribe a{color:#000;text-decoration:none;}
#subscribe a:hover{text-decoration:underline;}
#header{height:90px;width:916px;background:url(images/fundo_cabecalho.png);color:#000;}
#title{float:left;padding-top:0px;padding-left0px;}
#title a{color:#000;text-decoration:none;}

Alguem sabe como fazer?
 :obrigado:
Offline

Júnio Branco 
Membro
Mensagens 563 Gostos 0
Feedback +2

Troféus totais: 28
Trófeus: (Ver todos)
Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3 Level 2 Level 1

Boas, vou tentar ajudar-te... mas n prometo nd!  :lol:
Código: [Seleccione]
div id="top"><div id="date"><?php the_time('j \d\e F \d\e Y'); ?></div><div id="subscribe"><a href="http://telemovelonline.com/subscrever-feeds/">Subscrever Feed/Newsletter</a></div></div>
Este é o codigo que chama aqueles textos que queres remover, se quiseres adicionar um div central metes substituis essa linha por este:
Código: [Seleccione]
<div id="top" align="center"> EXEMPLO</div>

Em princípio o EXEMPLO ficará alinhado ao centro como querias
Offline

Celso Azevedo 
Membro
Mensagens 3500 Gostos 38
Feedback +12

Troféus totais: 32
Trófeus: (Ver todos)
Level 6 Tenth year Anniversary Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3

Obrigado, esta a funcionar =)