• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

move the logo - Mover logo

antoniojoseh

Chevereto Noob
Español:

Me gustaría mover el logotipo y los botones es posible hacerlo?

Y como se hace?


Ingles:

I would move the logo and the buttons is possible?

And how is it done?
 
Rodolfo said:
Con css 😛


Amigo eso lose pero no que parte es mira lo mire de esta forma.

<div id="top">
<div id="logo">
<a href="<?=URL_SCRIPT;?>"><img src="<?=PATH_SCRIPT;?>site-img/logo.png" alt="<?=APP_NAME;?>" /></a>
</div>

/* TOP */
div#top {
padding: 2em 1em 1.5em 1em;
margin: 0 auto;
min-height: 4em;
width: 57em;
}

div#top img {
border: 0;
}

div#logo {
margin: 0 auto;
float: left;
}

div#tagline {
margin: 20px 0 0 10px;
float: left;
color: #999;
}


no hay para bajar solo para mover a la izquierda...

y los botones supongo que seran estos.


<div id="contenedorupload">
<div id="subir_local">
<h2 id="chooselocal"><?=TXT_LOCAL;?></h2>
<div class="inputs"><input name="fileup" type="file" size="60" id="localUP" onclick="javascript:document.getElementById('remotaUP').value = '';"/></div>
</div>
<div id="subir_remota" style="display: none;">
<h2 id="chooseremota"><?=TXT_REMOTE;?></h2>
<div class="inputs"><input name="remota" size="60" id="remotaUP" onclick="javascript:document.getElementById('localUP').value = '';"/></div>
</div>
</div>


/* contenedor upload */
div#contenedorupload {
padding: .5em 0 .5em 0;
margin: .5em 0 .5em 0;
}



me podria decir en concreto que debo de mover porfavor?
 
No hay manera "simple" de mover esos elementos ya que para ello necesitas saber CSS.
 
Rodolfo said:
No hay manera "simple" de mover esos elementos ya que para ello necesitas saber CSS.

no em lo puede facilitar?

deberia ser algo como div#logo {
position: relative;
width: 600px;
top: -10px;
}

pero nose dodne aplicarlo:S
 
Back
Top