A
Alhambra Eidos Kiquenet
Hi misters,
I have ASP.NET website in development, that uses CSS file like this.
I have JPG file for CSS (background-image), using URL to virtual directory
of my website in development (/ConsultaOperaciones)
background-image:
url(/ConsultaOperaciones/comunes/imagenes/HeaderGlassBlack.jpg);
When I install my website in another PC (another company), the virtual
directory will be another (www.company.com/Portal or only www.company.com).
Then, my CSS file will be wrong if I use url(/ConsultaOperaciones...)
Any suggestions about it ?? Thanks in advance
/*Header and Pager styles*/
..HeaderStyle, .PagerStyle /*Common Styles*/
{
background-image:
url(/ConsultaOperaciones/comunes/imagenes/HeaderGlassBlack.jpg);
background-position:center;
background-repeat:repeat-x;
background-color:#1d1d1d;
}
I have ASP.NET website in development, that uses CSS file like this.
I have JPG file for CSS (background-image), using URL to virtual directory
of my website in development (/ConsultaOperaciones)
background-image:
url(/ConsultaOperaciones/comunes/imagenes/HeaderGlassBlack.jpg);
When I install my website in another PC (another company), the virtual
directory will be another (www.company.com/Portal or only www.company.com).
Then, my CSS file will be wrong if I use url(/ConsultaOperaciones...)
Any suggestions about it ?? Thanks in advance
/*Header and Pager styles*/
..HeaderStyle, .PagerStyle /*Common Styles*/
{
background-image:
url(/ConsultaOperaciones/comunes/imagenes/HeaderGlassBlack.jpg);
background-position:center;
background-repeat:repeat-x;
background-color:#1d1d1d;
}