I searched a lot for a way to do what I want but I only found ways that I can't use.
The problem is: I want to mirror ONLY the first letter of a Wordpress Site Title.
I have this Css:
.site-title {
font-family: fontLogo;
font-size: 60px;
font-weight: bold;
line-height: 1;
margin: 0;
padding: 58px 0 10px;
}
and I have added this piece:
.site-title::first-letter {
font-size: 80px;
-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
The class is used here:
<h1 class="site-title">TheTitle</h1>
A second problem is that I CANNOT edit this line, the only thing I can do is work with the css (I tried also to type a >span>
in the Title editor of WordPress without success.
The CSS actually is doing ONLY the scale of the letter, from 60px to 80px, but nothing is mirrored.
I am blocked and need a tip