LeMagasindesLivres Posted October 21, 2021 Share Posted October 21, 2021 Bonjour, Prestashop 1.7.6.7 lemagasindeslivres.com Je ne suis pas un spécialiste, je bricole et du coup ça ne marche pas tout le temps. Mais là, je m'arrache les cheveux... J'ai inclus dans le custom.css une règle pour les mobiles : #header { position: fixed;} De façon à figer le haut de l'écran (menus, bannière, logo...). Le petit souci est sur la page mon compte, lorsque le client est identifié.....Le header apparaît en milieu de page avec le contenu de la page Mon compte dessous. Est-ce que quelqu'un a une piste à m'indiquer ? Merci ! Link to comment Share on other sites More sharing options...
pullidea-dev Posted October 21, 2021 Share Posted October 21, 2021 I found below code in your custom.css @media (max-width: 500px){ #header { position: fixed; width: 100%; z-index: 1000; height: 238px; } } Add one line here. @media (max-width: 500px){ #header { position: fixed; width: 100%; z-index: 1000; height: 238px; top: 0; // add this line } } 1 Link to comment Share on other sites More sharing options...
LeMagasindesLivres Posted October 21, 2021 Author Share Posted October 21, 2021 Thanks a lot, it is just perfect! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now