Changer de thème pour un site web.
Résolu/Fermé
CassThor
Messages postés
116
Date d'inscription
mercredi 6 novembre 2013
Statut
Membre
Dernière intervention
22 septembre 2020
-
8 nov. 2013 à 14:13
animostab Messages postés 2829 Date d'inscription jeudi 10 mars 2005 Statut Membre Dernière intervention 11 novembre 2019 - 9 nov. 2013 à 15:41
animostab Messages postés 2829 Date d'inscription jeudi 10 mars 2005 Statut Membre Dernière intervention 11 novembre 2019 - 9 nov. 2013 à 15:41
A voir également:
- Changer de thème pour un site web.
- Changer dns - Guide
- Site de telechargement - Accueil - Outils
- Site pour vendre des objets d'occasion - Guide
- Site comme coco - Accueil - Réseaux sociaux
- Création site web - Guide
1 réponse
animostab
Messages postés
2829
Date d'inscription
jeudi 10 mars 2005
Statut
Membre
Dernière intervention
11 novembre 2019
737
8 nov. 2013 à 14:22
8 nov. 2013 à 14:22
voici une page qui va te renseigner sur le switch css
http://mikinfo.free.fr/index.php/mise-en-place-dun-css-switcher-avec-jquery/
pour tes boutons mets les dans un div avec une id ou class
puis tu applique la position fixed a ce div avec CSS
http://mikinfo.free.fr/index.php/mise-en-place-dun-css-switcher-avec-jquery/
pour tes boutons mets les dans un div avec une id ou class
puis tu applique la position fixed a ce div avec CSS
8 nov. 2013 à 14:46
Je file voir ton lien et tester le div sur les boutons...
un grand MERCI !
8 nov. 2013 à 14:52
Modifié par animostab le 8/11/2013 à 15:17
evite de mettre un <p></p> dans une balise <a>
essaie ca
au lieu de
<a href="https://aws.amazon.com/cloud9/">
<p class="border">Accueil</p>
</a>
<a href="https://aws.amazon.com/cloud9/">
<p class="border">Page de bienvenue</p>
</a>
fais
<div class="border">
<a href="https://aws.amazon.com/cloud9/">
Accueil
</a>
<a href="https://aws.amazon.com/cloud9/">
Page de bienvenue
</a>
</div>
CSS
.border {
position: fixed;
width: 100%;
height: auto;
}
.border a
{
font-family:'Trebuchet MS', serif;
text-align:center;
font-size:12;
width: 200px;
height: 15px;
color: #d5d5d5;
margin-left:1px;
background: #444;
background: -webkit-linear-gradient( #555, #2C2C2C);
background: -moz-linear-gradient( #555, #2C2C2C);
background: -ms-linear-gradient( #555, #2C2C2C);
background: -o-linear-gradient( #555, #2C2C2C);
background: linear-gradient( #555, #2C2C2C);
border-radius: 8px;
text-shadow: 0px 1px 0px rgba( 255, 255, 255, 0.2);
box-shadow: 0 0 5px rgba( 0, 0, 0, 0.5), 0 -1px 0 rgba( 255, 255, 255, 0.4);
}
.border a:hover
{
color: #222;
background: #444;
background: -webkit-linear-gradient( #777, #15b6dc);
background: -moz-linear-gradient( #777, #15b6dc);
background: -ms-linear-gradient( #777, #15b6dc);
background: -o-linear-gradient( #777, #15b6dc);
background: linear-gradient( #777, #15b6dc);
}
.border a:active
{
color: #000;
background: #444;
background: -webkit-linear-gradient( #555, #e85a0a);
background: -moz-linear-gradient( #555, #e85a0a);
background: -ms-linear-gradient( #555, #e85a0a);
background: -o-linear-gradient( #555, #e85a0a);
background: linear-gradient( #555, #e85a0a);
box-shadow: 1px 1px 10px black inset,
0 1px 0 rgba( 255, 255, 255, 0.4);
}
Modifié par CassThor le 8/11/2013 à 15:26
Modifié par CassThor le 8/11/2013 à 15:58
Je vais essayer de modifier ça moi-même.
Merci :)
EDIT:
Je ne comprend pas ce que signifie .border a