Como centro esto en php

  • Autor Autor kisame1919
  • Fecha de inicio Fecha de inicio
K

kisame1919

Dseda
Buenas colega, como puedo centrar?

Lo puse asi ->
< center><h1>Descargar <?php the_title(); ?> por Torrent</h1></center>

no se centra

Ayudeme este es el codigo
PHP:
                <h1>Descargar <?php the_title(); ?> por Torrent</h1>

Screenshot_1.webp
 
Buenas colega, como puedo centrar?

Lo puse asi ->
< center><h1>Descargar <?php the_title(); ?> por Torrent</h1></center>

no se centra

Ayudeme este es el codigo
PHP:
                <h1>Descargar <?php the_title(); ?> por Torrent</h1>

Ver el archivo adjunto 203255
< center> es una etiqueta obsoleta usa text-align: center;
HTML:
<div style="text-align: center; "><h1>titulo</h1></div>

Tabien puedes usar flex,
display: flex;
justify-content: center;
 
prueba dentro de <h1 style="text-align:center">.
 
Buenas colega, como puedo centrar?

Lo puse asi ->
< center><h1>Descargar <?php the_title(); ?> por Torrent</h1></center>

no se centra

Ayudeme este es el codigo
PHP:
                <h1>Descargar <?php the_title(); ?> por Torrent</h1>

Ver el archivo adjunto 203255


Vamos a optimizar el codigo.

En tu css agrega lo siguiente:
CSS:
.titulodescarga {text-align:center;}


y en el php pones lo siguiente:
PHP:
<h1 class="titulodescarga">Descargar <?php the_title(); ?> por Torrent</h1>
 
Atrás
Arriba