• 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.

The option button

Jaran

Chevereto Member
Could anyone help me out with moving the little option button's that show's the TinyURL option when you click it? Got honestly no clue how I can move it, and I have been trying for quite some time now(New to css and all that). Anyways, would be great if anyone could help me out with this :D
 
index.php
Code:
<a id="preferences"><?php show_lang_txt('button_upload_preferences'); ?></a>
 
AmN said:
index.php
Code:
<a id="preferences"><?php show_lang_txt('button_upload_preferences'); ?></a>

Well yeah.. But what if I want it more to the right and so on?
 
go to your styl.css

go to line 252:

Code:
    a#preferences {
        display: block;
        float: left;
        font-size: 9px;
        color: #777;
        border: 1px solid #B6B6B6;
        padding: 0 10px;
        text-shadow: 1px 1px 0 #FFF;
        -webkit-border-radius: 1em;
        -moz-border-radius: 1em;
        border-radius: 1em;
        background-image: url(./theme-img/bkg-uploadpreferences.png);
        background-position: top top;
        background-repeat: repeat-x;
        background-color: #E2E2E2;
    }

edit this css part.

:)
 
Try to use CSSEdit or Firebug for live CSS editing, is more easy to understand ;)
 
Back
Top