• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Centrar (About Us - Terms of Service - Contac)

mundo

Chevereto Member
Buenas :)

Tengo una duda...

Yo saque la imagen del power by y queria saber como tendria que hacer para centrar en la pantalla, la parte de About Us - Terms of Service - Contac.


Dejo una imagen asi se entiende mejor, porque intente hacerlo pero no pude.

5CSd.jpg


Gracias como siempre :) !
 
Anda a content/themes/<tu tema>/style.css

Cambia esto:
Code:
#foot-content {
    float: left;
}

Por esto:
Code:
#foot-content {
    /*float: left;*/
    text-align: center;
}

Cambia esto:
Code:
#foot p {
    clear: both;
    float: left;
}

Por esto:
Code:
#foot p {
    clear: both;
    /*float: left;*/
}

Cambia esto:
Code:
#foot ul {
    float: left;
    list-style: none outside none;
}

Por esto:
Code:
#foot ul {
    /*float: left;*/
    list-style: none outside none;
    display: inline-block;
}

PD: Incluye la URL de tu sitio cuando preguntes.
 
Back
Top