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

Change color of the box that shows up when i click on "rezise image"?

booyaka95

Chevereto Noob
I would change the color of the box that shows up when i click on resize image??
At the moment the box is white and the border is blue.
I would change this.

Thanks :D

PS: My englisch isn't good i know^^
 
Hi, i assume that it's in the estillo.css :

For the border:

Code:
div#redimensionar-borde {
    position: relative;
    width: 600px;
    top: -10px; /* usar valor positivo para opera */
    border: 1px solid #5A9CD0;
    z-index: 0;
    }

#5A9CD0 is the current color, change for what you want

You can also change the color of the box, but it won't fit very much with the design :

Code:
div#redimensionar-borde {
    position: relative;
    width: 600px;
    top: -10px; /* usar valor positivo para opera */
    background-color: #CCCCCC;
    border: 1px solid #5A9CD0;
    z-index: 0;
    }
 
Back
Top