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

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 big_smile

PS: My englisch isn't good i know^^

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

Hi, i assume that it's in the estillo.css :

For the border:

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 :

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

Last edited by Ainur (2009-10-24 09:24:04)

Thumbs up

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

Thank you  big_smile