Intégrer un bouton CSS dans un article blogger
Résolu/Fermé
kid-chan
-
12 mars 2015 à 16:53
kid-chan Messages postés 1 Date d'inscription vendredi 13 mars 2015 Statut Membre Dernière intervention 13 mars 2015 - 13 mars 2015 à 10:08
kid-chan Messages postés 1 Date d'inscription vendredi 13 mars 2015 Statut Membre Dernière intervention 13 mars 2015 - 13 mars 2015 à 10:08
A voir également:
- Intégrer un bouton CSS dans un article blogger
- Intégrer une vidéo dans un powerpoint - Guide
- Réinitialiser chromecast sans bouton - Guide
- Faire un trait en css ✓ - Forum CSS
- Comment debloquer un bouton enfoncé - Forum iPhone
1 réponse
kid-chan
Messages postés
1
Date d'inscription
vendredi 13 mars 2015
Statut
Membre
Dernière intervention
13 mars 2015
13 mars 2015 à 10:08
13 mars 2015 à 10:08
Rebonjour!
Je reviens finalement avec la solution que j'ai trouvée entre temps, au cas où ça en aiderait certains...
J'ai collé mon code entre les balises b:skin (modification html du modèle blogger) de cette façon (rajout du "a" devant les styles pour correspondre à la balise html) :
/* Bouton
----------------------------------------------- */
a.btn {
background: #d93497;
background-image: -webkit-linear-gradient(top, #d93497, #682bb8);
background-image: -moz-linear-gradient(top, #d93497, #682bb8);
background-image: -ms-linear-gradient(top, #d93497, #682bb8);
background-image: -o-linear-gradient(top, #d93497, #682bb8);
background-image: linear-gradient(to bottom, #d93497, #682bb8);
-webkit-border-radius: 25;
-moz-border-radius: 25;
border-radius: 25px;
text-shadow: 2px 2px 4px #000000;
-webkit-box-shadow: 2px 2px 5px #000000;
-moz-box-shadow: 2px 2px 5px #000000;
box-shadow: 2px 2px 5px #000000;
font-family: Georgia;
color: #ffffff;
font-size: 20px;
padding: 10px 15px 10px 15px;
text-decoration: none;
}
a.btn:hover {
background: #682bb8;
background-image: -webkit-linear-gradient(top, #682bb8, #d93497);
background-image: -moz-linear-gradient(top, #682bb8, #d93497);
background-image: -ms-linear-gradient(top, #682bb8, #d93497);
background-image: -o-linear-gradient(top, #682bb8, #d93497);
background-image: linear-gradient(to bottom, #682bb8, #d93497);
text-decoration: none;
}
Ce qui m'a permis d'utiliser ce CSS pour tout les boutons que je souhaite intégrer à mon blog!
Puis j'utilise ce code html dans mon article :
<a class="btn" href="[lien du bouton]" target="_blank" >[texte du bouton]</a>
(target="_blank" sert à ouvrir le lien dans un nouvel onglet)
Voila, peut-être que ça pourra en aider certains...
Je reviens finalement avec la solution que j'ai trouvée entre temps, au cas où ça en aiderait certains...
J'ai collé mon code entre les balises b:skin (modification html du modèle blogger) de cette façon (rajout du "a" devant les styles pour correspondre à la balise html) :
/* Bouton
----------------------------------------------- */
a.btn {
background: #d93497;
background-image: -webkit-linear-gradient(top, #d93497, #682bb8);
background-image: -moz-linear-gradient(top, #d93497, #682bb8);
background-image: -ms-linear-gradient(top, #d93497, #682bb8);
background-image: -o-linear-gradient(top, #d93497, #682bb8);
background-image: linear-gradient(to bottom, #d93497, #682bb8);
-webkit-border-radius: 25;
-moz-border-radius: 25;
border-radius: 25px;
text-shadow: 2px 2px 4px #000000;
-webkit-box-shadow: 2px 2px 5px #000000;
-moz-box-shadow: 2px 2px 5px #000000;
box-shadow: 2px 2px 5px #000000;
font-family: Georgia;
color: #ffffff;
font-size: 20px;
padding: 10px 15px 10px 15px;
text-decoration: none;
}
a.btn:hover {
background: #682bb8;
background-image: -webkit-linear-gradient(top, #682bb8, #d93497);
background-image: -moz-linear-gradient(top, #682bb8, #d93497);
background-image: -ms-linear-gradient(top, #682bb8, #d93497);
background-image: -o-linear-gradient(top, #682bb8, #d93497);
background-image: linear-gradient(to bottom, #682bb8, #d93497);
text-decoration: none;
}
Ce qui m'a permis d'utiliser ce CSS pour tout les boutons que je souhaite intégrer à mon blog!
Puis j'utilise ce code html dans mon article :
<a class="btn" href="[lien du bouton]" target="_blank" >[texte du bouton]</a>
(target="_blank" sert à ouvrir le lien dans un nouvel onglet)
Voila, peut-être que ça pourra en aider certains...