Se você quiser centralizar, (alinhar à esquerda ou à direita), primeiramente vá em Design > Editar HTML > e procure por .post h3(use Ctrl + F).
Encontraremos algo como isto:
.post h3 {
margin: 0 0 0,25 in;
padding: 0 0 4px;
font-size: 140%;
font-weight: normal;
line-height: 1.4em;
color: $ titlecolor;
}
Agora basta adicionarmos a linha text-align: center;
.post h3 {
text-align: center;
margin: 0 0 0,25 in;
padding: 0 0 4px;
font-size: 140%;
font-weight: normal;
line-height: 1.4em;
color: $ titlecolor;
}
Para alinhar à esquerda use text-align: left; à direita use text-align: right;
Visualize e se estiver tudo ok, salve.
Mortification (Death/Thrash)
Há 5 anos