styler un séparateur <hr>
D'abord, il faut savoir quel séparateu on style. il y a "discret", "marqué" ou "invisible"
| type | classes générées | 
|---|---|
| discret | class="bloc_separator sep1" | 
| marqué | class="bloc_separator sep2" | 
| marqué | class="bloc_separator inv" | 
dans les 3 cas, la div contient un <hr>. par exemple:
<div class="bloc_separator inv">
<hr>
</div>
<hr>
</div>
styler
on style le hr directement. par exemple:
<css selector='.bloc_separator.sep1 hr' width='200px' margin='auto' height='5px!important' background-color='red!important'/>
Editer
