Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
1237 connectés 

  FORUM HardWare.fr
  Programmation
  HTML/CSS

  Quelques bugs persistants sous Prestashop RESOLU

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

Quelques bugs persistants sous Prestashop RESOLU

n°2306947
Nomain
Carpe diem
Posté le 25-10-2017 à 14:31:51  profilanswer
 

Salut à tous,
 
J'ai crée une boutique e-commerce, http://la-maison-des-enfants.fr/, actuellement sous Prestashop 1.6.1.17.
 
Tout fonctionne globalement bien, mais j'ai 4 bugs que je ne parviens pas à résoudre, malgré des heures de recherche.
 
1- Le texte "nous suivre" apparaît comme un lien, avec une main au survol, alors que ce n'est pas cliquable et que je ne souhaite pas que cela le soit.
http://terrepourtous.free.fr/Issue1.jpg
 
2- Sur mobile, lorsqu'on clique sur la flèche descendante, le menu se déroule avant de remonter seul juste après. Il faut à chaque fois appuyer une seconde fois sur cette flèche pour que le menu reste déroulé.
http://terrepourtous.free.fr/Issue3.jpg
 
Sauriez-vous comment résoudre cela ?
 
Merci !
:jap:


Message édité par Nomain le 27-10-2017 à 15:55:54

---------------
Mon feedback : http://forum.hardware.fr/transacti [...] user=70563
mood
Publicité
Posté le 25-10-2017 à 14:31:51  profilanswer
 

n°2306952
Nomain
Carpe diem
Posté le 25-10-2017 à 19:47:22  profilanswer
 

1- J'ai trouvé un palliatif qui consiste tout simplement à supprimer ce texte via la partie «traduction» du BO.

 

Je note que le texte "Information sur votre boutique" semble également cliquable, alors qu'il ne l'est pas. Sans doute parce que dans le mode mobile, il s'agit d'un menu déroulant.


Message édité par Nomain le 26-10-2017 à 14:30:22

---------------
Mon feedback : http://forum.hardware.fr/transacti [...] user=70563
n°2306961
Nomain
Carpe diem
Posté le 26-10-2017 à 09:34:20  profilanswer
 
n°2307000
rufo
Pas me confondre avec Lycos!
Posté le 26-10-2017 à 14:52:37  profilanswer
 

C'est dans le css qu'il faut corriger le point n°1 : t'as sûrement une règle avec cursor: pointer;
Sinon, tu peux ajouter une règle display: none; pour la balise qui contient "nous suivre". Ca sera plus propre. Parce que bidouiller le fichier de traduction, c'est pas une bonne idée. Risque d'effet de bord ou quand tu feras la MAJ de ton produit, faudra rebidouiller le fichier.
 
Pour le n°2, là, c'est probablement un bug javascript.


---------------
Astres, outil de help-desk GPL : http://sourceforge.net/projects/astres, ICARE, gestion de conf : http://sourceforge.net/projects/icare, Outil Planeta Calandreta : https://framalibre.org/content/planeta-calandreta
n°2307012
Nomain
Carpe diem
Posté le 26-10-2017 à 17:25:20  profilanswer
 

Rufo,
 
Merci, je regarde ça en rentrant dans le global.css du theme.


---------------
Mon feedback : http://forum.hardware.fr/transacti [...] user=70563
n°2307020
Nomain
Carpe diem
Posté le 26-10-2017 à 21:23:56  profilanswer
 

Rufo,
 
J'ai cherché en vain dans le global.css du theme. Je n'ai rien trouvé, sachant que je sais que c'est en lien avec le social_block.
 
Ci-dessous les lignes avec social_block :
    .footer-container #footer #social_block {
      float: left;
      width: 50%;
      padding: 22px 15px 0 15px; }
      @media (max-width: 767px) {
        .footer-container #footer #social_block {
          width: 100%;
          float: left;
          padding-top: 5px; } }
      .footer-container #footer #social_block ul {
        float: right; }
        @media (max-width: 767px) {
          .footer-container #footer #social_block ul {
            float: none; } }
        .footer-container #footer #social_block ul li {
          float: left;
          width: 40px;
          text-align: center; }
          @media (min-width: 768px) and (max-width: 991px) {
            .footer-container #footer #social_block ul li {
              width: 30px; } }
          .footer-container #footer #social_block ul li a {
            display: inline-block;
            color: #908f8f;
            font-size: 28px; }
            @media (min-width: 768px) and (max-width: 991px) {
              .footer-container #footer #social_block ul li a {
                font-size: 20px; } }
            .footer-container #footer #social_block ul li a span {
              display: none; }
            .footer-container #footer #social_block ul li a {
              display: inline-block;
              font-family: "FontAwesome";
              vertical-align: -5px;
              font-weight: normal;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale; }
            .footer-container #footer #social_block ul li a {
              color: #fff; }
          .footer-container #footer #social_block ul li.facebook a:before {
            content: "\f09a"; }
          .footer-container #footer #social_block ul li.twitter a:before {
            content: "\f099"; }
          .footer-container #footer #social_block ul li.rss a:before {
            content: "\f09e"; }
          .footer-container #footer #social_block ul li.youtube a:before {
            content: "\f167"; }
          .footer-container #footer #social_block ul li.google-plus a:before {
            content: "\f0d5"; }
          .footer-container #footer #social_block ul li.pinterest a:before {
            content: "\f0d2"; }
          .footer-container #footer #social_block ul li.vimeo a:before {
            content: "\f194"; }
          .footer-container #footer #social_block ul li.instagram a:before {
            content: "\f16d"; }
      .footer-container #footer #social_block h4 {
        float: right;
        margin-bottom: 0;
        font-size: 21px;
        line-height: 25px;
        text-transform: none;
        padding: 0 10px 0 0; }
        @media (max-width: 767px) {
          .footer-container #footer #social_block h4 {
            display: none;
            text-align: center; } }
 
Merci !!


---------------
Mon feedback : http://forum.hardware.fr/transacti [...] user=70563
n°2307021
rufo
Pas me confondre avec Lycos!
Posté le 26-10-2017 à 21:41:59  profilanswer
 

Ca doit sûrement hériter d'une règle css d'une balise supérieure dans l'arbre. Cherche ailleurs un cursor: pointer.
 
Du reste dans ton fichier xxxx_all.css qui est sur ton site, on trouve cette règle :
.footer-container #footer h4{font:600 18px/22px "Open Sans",sans-serif;color:#fff;margin:0 0 13px 0;cursor:pointer}
 
C'est cette règle là puisque "nous suivre" est dans le #footer, dans une balise <h4> ;)


---------------
Astres, outil de help-desk GPL : http://sourceforge.net/projects/astres, ICARE, gestion de conf : http://sourceforge.net/projects/icare, Outil Planeta Calandreta : https://framalibre.org/content/planeta-calandreta
n°2307022
Nomain
Carpe diem
Posté le 26-10-2017 à 22:33:28  profilanswer
 

Rufo,

 

Tu assures !
J'ai remplacé ce que tu as copié par
.footer-container #footer h4 {
font: 600 18px/22px "Open Sans", sans-serif;
color: #fff;
margin: 0 0 13px 0; }

 

Merci !!


Message édité par Nomain le 26-10-2017 à 22:52:42

---------------
Mon feedback : http://forum.hardware.fr/transacti [...] user=70563

Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Programmation
  HTML/CSS

  Quelques bugs persistants sous Prestashop RESOLU

 

Sujets relatifs
Prestashop installation impossible !AIDE URGENTE - Prestashop 1.6.1.2 - Thème
ID dans l'URL conviviale PrestaShopAide pour mise en ligne site Prestashop 1.5 : Page blanche
liens hypertextes sur PrestaShopBoutique prestashop invisible et remplacée par page blanche
prestashop personnaliserMagento ou Prestashop?
Prestashop bouton "envoyer" 2ème formulaire de contactHook et customisation de templates prestashop
Plus de sujets relatifs à : Quelques bugs persistants sous Prestashop RESOLU


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR