I'm trying to change a strong content that is in a class.
If I try this code, it inserts the text after original text correctly:
.categoria-paginas a strong:after
{
content: 'Schmitz';
}
But when I try to change all the content, it doesn't work:
.categoria-paginas a strong
{
content: 'Schmitz';
}