Jump to content

Recommended Posts

Bonjour, je suis entrains de refaire mon site, j'ai donc installer la dernière version de PS en local et je fait toutes les modif des CSS pour le rendre a mon souhait... en sachant que j'ai jamais toucher a sa.....

Donc je bloque pour le moment sur le bouton panier une fois dans la page produit....  au lieu de bleu, j'ai mis de l'orange.... par contre le OVER je trouve pas et les contours aussi qui restent bleu......

 

Je ne trouve pas dans le product.css ni dans le product_list.css...

 

j'appel a votre aide.... et surement je continuerais a vous le demander pour certaines petites choses

Link to comment
Share on other sites

Bonjour,

 

dans /css/product.css

 

.box-info-product .exclusive

 

car les bords ne changent pas avec le hover donc il faut les définir.

C'est bien ce que j'ai fait...... mais il me reste des bords en bleu....... et je ne trouve pas la ligne du OVER
 
box-info-product .exclusive {
    padding: 0;
    border-top: 1px solid #E64406;
    border-right: 1px solid #E64406;
    border-left: 1px solid #E64406;
    border-bottom: 1px solid #E64406;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    display: block;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwOWFkMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwN2FiNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #E64406), color-stop(100%, #B72000));
    background-image: -moz-linear-gradient(#E64406, #B72000);
    background-image: -webkit-linear-gradient(#E64406, #B72000);
    background-image: linear-gradient(#E64406, #B72000);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E64406', endColorstr='#B72000',GradientType=0 ); }
Link to comment
Share on other sites

ok pour le OVER efin j'ai trouvé la ligne CSS ( 530)

 

.box-info-product .exclusive:hover {
     
      background-size: 100%;
      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #E64406), color-stop(100%, #EC6C2F));
      background-image: -moz-linear-gradient(#E64406, #EC6C2F);
      background-image: -webkit-linear-gradient(#E64406, #EC6C2F);
      background-image: linear-gradient(#E64406, #EC6C2F);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E64406', endColorstr='#EC6C2F',GradientType=0 );
      background-position: 0 0; }
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...