Bonjour à tous,
je sais que ce forum est consacré à Joomla mais je pose notre question malgré tout.
Elle est relative au css. Nous ne sommes pas spécialistes du tout. Nous avons trouvé une solution mais elle est lourde et complexe. Elle fonctionne bien.
Nous avons créé un nouveau style pour nos articles de blog. Son but est de mettre en avant une phrase importante qui doit être bien visible.
Voici le style :
hr.gp-txt-important03-top {
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
color:#333399;
width: 50%;
margin-top: 2.0em;
margin-bottom: 2.0em;
}
hr.gp-txt-important03-bottom {
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
color:#333399;
width: 50%;
margin-top: 2.0em;
margin-bottom: 2.0em;
}
.gp-txt-important03 {
font-family: 'Raleway';
font-size: 1.7em;
font-weight: bold;
width: 70%;
margin: auto;
text-align:center;
}
Voici comment nous l'intégrons dans nos pages HTML :
<hr class="gp-txt-important03-top">
<div class="gp-txt-important03">
Ceci est une phrase importante.
</div>
<hr class="gp-txt-important03-bottom">
Comme vous le voyez c'est un peu lourd. Nous pensons qu'il est possible de juste écrire :
<div class="gp-txt-important03">
Ceci est une phrase importante.
</div>
Mais nous n'arrivons pas à trouver la syntaxe.
Si quelqu'un pouvait nous donner la solution ce serai super.
Merci par avance pour votre aide
Isa
je sais que ce forum est consacré à Joomla mais je pose notre question malgré tout.
Elle est relative au css. Nous ne sommes pas spécialistes du tout. Nous avons trouvé une solution mais elle est lourde et complexe. Elle fonctionne bien.
Nous avons créé un nouveau style pour nos articles de blog. Son but est de mettre en avant une phrase importante qui doit être bien visible.
Voici le style :
hr.gp-txt-important03-top {
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
color:#333399;
width: 50%;
margin-top: 2.0em;
margin-bottom: 2.0em;
}
hr.gp-txt-important03-bottom {
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
color:#333399;
width: 50%;
margin-top: 2.0em;
margin-bottom: 2.0em;
}
.gp-txt-important03 {
font-family: 'Raleway';
font-size: 1.7em;
font-weight: bold;
width: 70%;
margin: auto;
text-align:center;
}
Voici comment nous l'intégrons dans nos pages HTML :
<hr class="gp-txt-important03-top">
<div class="gp-txt-important03">
Ceci est une phrase importante.
</div>
<hr class="gp-txt-important03-bottom">
Comme vous le voyez c'est un peu lourd. Nous pensons qu'il est possible de juste écrire :
<div class="gp-txt-important03">
Ceci est une phrase importante.
</div>
Mais nous n'arrivons pas à trouver la syntaxe.
Si quelqu'un pouvait nous donner la solution ce serai super.
Merci par avance pour votre aide
Isa
Commentaire