I am trying to: apply css ( add a span value to text-transform:capitalize; a certain value
Link to a page where the issue can be seen: hidden link
I expected to see: where it says "Probate Attorneys in Coffee"
Instead, I got: where it says "Probate Attorneys in coffee"
I do not see the CSS added in your ScreenShot.
You need to add it to the CSS editor.
For example:
h1 {
text-transform:capitalize;
}
This works just fine on my local test.
i tried that originally, also tried other things.
here it is with your idea, but the output is the same.
i tried inline, using spans, styling the span inline, i also
tried giving the span a class, and adding the css in the css area .
i also tried adding the style html to the css.
i believe the issue is the output is raw but i do not know what or where to change that...
My issue is resolved now. Thank you!