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)