Bonjour à tous
Alors c'est mon premier post et je suis nouveau dans le développement web soyez indulgent ^^.
Alors je dois refaire un site Web wordpress utilisant le thème Avada et je veux faire des gros boutons cliquables en Html. Ces boutons mènerais à d'autres boutons cliquable à nouveaux.
Alors voila mon beau code HTML:
ET mon CSS
Et mon problème c'est que mon liens est cliquable sur mon image de ma div image 2 Alors qu'il est censé être sur l'image 1 non ?
Merci de l'aider
Alors c'est mon premier post et je suis nouveau dans le développement web soyez indulgent ^^.
Alors je dois refaire un site Web wordpress utilisant le thème Avada et je veux faire des gros boutons cliquables en Html. Ces boutons mènerais à d'autres boutons cliquable à nouveaux.
Alors voila mon beau code HTML:
<div id="blocglobal">
<div id="image1"><a href="LIENS VERS LA PAGE AVEC LES AUTRES BOUTONS"></div>
<div id="image2"></div>
<div id="texte1"><a href="LIENS VERS LA PAGE AVEC LES AUTRES BOUTONS"><strong>Formation disciplinaire</strong></a></div>
<div id="texte2"><strong>Préparer un concours</strong></div>
<div id="image3"></div>
<div id="image4"></div>
<div id="texte1"><strong>Formation transversale</strong></div>
<div id="texte2"><strong>Réformes</strong></div>
</div>
<div></div>
<div></div>
<div id="blocglobal"></div>
ET mon CSS
#image1{
width:280px;
box-shadow: 4px -4px 10px #DEDEDE;
height:266px;
margin-bottom : 30 px;
margin-top: 50px;
border-top-left-radius : 100px;
border-top-right-radius : 100px;
border-bottom-left-radius : 100px;
border-bottom-right-radius : 100px;
background-image: url("http://192.168.0.4/CNFETP/wp-content/uploads/2016/formation_disciplinaire.jpg");
}
#texte1{
color: #51369b !important;
margin-left: 65px;
margin-top: -25px
}
#texte2{
color: #51369b !important;
margin-left: 400px;
margin-top: -25px
}
#image3{
width:280px;
height:266px;
margin-bottom : 30px;
margin-top: 50px;
border-top-left-radius : 100px;
border-top-right-radius : 100px;
border-bottom-left-radius : 100px;
border-bottom-right-radius : 100px;
background-image: url("http://192.168.0.4/CNFETP/wp-content/uploads/2016/Formation_Transversales.jpg");
}
#image2{
width:280px;
height:266px;
margin-bottom : 30px;
margin-left: 40px;
margin-top: 50px;
border-top-left-radius : 100px;
border-top-right-radius : 100px;
border-bottom-left-radius : 100px;
border-bottom-right-radius : 100px;
background-image: url("http://192.168.0.4/CNFETP/wp-content/uploads/2016/preparation_concours.jpg");
}
#image4{
width:280px;
height:266px;
margin-bottom : 30px;
margin-left: 40px;
margin-top: 50px;
border-top-left-radius : 100px;
border-top-right-radius : 100px;
border-bottom-left-radius : 100px;
border-bottom-right-radius : 100px;
background-image: url("http://192.168.0.4/CNFETP/wp-content/uploads/2016/Reformes.jpg");
}
Et mon problème c'est que mon liens est cliquable sur mon image de ma div image 2 Alors qu'il est censé être sur l'image 1 non ?
Merci de l'aider