Bonjour,
J'utilise le template Protostar et je souhaite modifier la couleur blanche du fond de page.
J'ai modifié le fichier Protostar/css/template.css file comme ceci, ligne 6075:
.body .container {
background-color: #e7f7ff;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
padding: 20px;
border: 1px solid rgba(0,0,0,0.15);
-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
}
J'ai utilisé le Webdevelopper, avec le code suivant:
/* Ligne 6075 */
.body .container
{
background-color: #ffffff;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
padding-top: 20px;
padding-right: 20px;
padding-bottom: 20px;
padding-left: 20px;
border-top-width: 1px;
border-right-width-value: 1px;
border-bottom-width: 1px;
border-left-width-value: 1px;
border-top-style: solid;
border-right-style-value: solid;
border-bottom-style: solid;
border-left-style-value: solid;
border-top-color: rgba(0, 0, 0, 0.15);
border-right-color-value: rgba(0, 0, 0, 0.15);
border-bottom-color: rgba(0, 0, 0, 0.15);
border-left-color-value: rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
}
Donc la couleur de fond n'est pas prise en compte. Je pensais ne pas avoir utilisé le bon fichier mais le Webdeveloppe indique ce fichier: http://localhost/myweb/templates/pro...s/template.css
Voir copy d'écran
Auriez-vous une idée car je sèche depuis 3 jours ...
Merci d'avance
J'utilise le template Protostar et je souhaite modifier la couleur blanche du fond de page.
J'ai modifié le fichier Protostar/css/template.css file comme ceci, ligne 6075:
.body .container {
background-color: #e7f7ff;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
padding: 20px;
border: 1px solid rgba(0,0,0,0.15);
-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
}
J'ai utilisé le Webdevelopper, avec le code suivant:
/* Ligne 6075 */
.body .container
{
background-color: #ffffff;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
padding-top: 20px;
padding-right: 20px;
padding-bottom: 20px;
padding-left: 20px;
border-top-width: 1px;
border-right-width-value: 1px;
border-bottom-width: 1px;
border-left-width-value: 1px;
border-top-style: solid;
border-right-style-value: solid;
border-bottom-style: solid;
border-left-style-value: solid;
border-top-color: rgba(0, 0, 0, 0.15);
border-right-color-value: rgba(0, 0, 0, 0.15);
border-bottom-color: rgba(0, 0, 0, 0.15);
border-left-color-value: rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
}
Donc la couleur de fond n'est pas prise en compte. Je pensais ne pas avoir utilisé le bon fichier mais le Webdeveloppe indique ce fichier: http://localhost/myweb/templates/pro...s/template.css
Voir copy d'écran
Auriez-vous une idée car je sèche depuis 3 jours ...
Merci d'avance
Commentaire