Mike West Posted May 25, 2013 Share Posted May 25, 2013 Bonjour, J'aimerai savoir comment mettre une image de fond cliquable au site. Donc une image de pub background, que dès qu'on clique dessus me redirige vers un produit. Merci Mike Link to comment Share on other sites More sharing options...
Bondaty and Co Posted May 27, 2013 Share Posted May 27, 2013 dans votre global.css ajouter ou remplacer le code du background de votre balise html et mettez votre fond image dans le /img/ du thème: background: url(../img/fond.jpg) no-repeat fixed top center transparent; -webkit-background-size: cover; /* pour Chrome et Safari */ -moz-background-size: cover; /* pour Firefox */ -o-background-size: cover; /* pour Opera */ background-size: cover; /* version standardisée */ puis: span.background-lien a{ display:block; width: 100%; height:100%; position:fixed; } Dans votre header.tpl sous la balise body avant le {if !$content_only} ajouter: <span class="background-lien"><a href="votre lien produit" title="texte" ></a></span> vérifiez que vous n'avez pas un background dans le body 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