when using site title it seems like there’s added a space to the code so that ‘smv’ in the title appears as ‘smv ‘ with extra space in the code;
This is a problem when I’m adding extra text with a css ::before to the title; It want the following result: smvBrobygger. However it ends up smv brobygger
http://www.smvbrobygger.dk
code:
.main-title a::before {
content: “smv”;
}
How to get rid of the extra space or even better how to add formating to the first 3 letters in the title?