egegorgun
Member
Posted 3 months ago #
Hello,
I have a WP site with tr_TR language and I want to see the author names that appear in the author box as in the same form of the author pages. For instance, for me,
My author page is this: http://blog.kibristaodtuvarmis.com/yazarlar/ege-gorgun/. Here my name appears in this form: Ege GÖRGÜN (name capitalized, surname uppercase).
And a post of mine is this: http://blog.kibristaodtuvarmis.com/kampusta-sosyal-yasam/. Here, in the author box, my name appears in this form: EGE GÖRGÜN (all uppercase). I want to change it to Ege GÖRGÜN and how can I do that?
Thanks!
http://wordpress.org/extend/plugins/authorsure/
Your WordPress theme style.css file is transforming your name to be upper case.
AuthorSure produces the following HTML
<a rel="author" href="http://blog.kibristaodtuvarmis.com/yazarlar/ege-gorgun/" class="authorsure-author-link">Ege GÖRGÜN</a>
For some reason "Inspect Element" is not working on Google Chrome when I visit your site so I cannot see the specific line of CSS that is transforming your name to be upper case.
egegorgun
Member
Posted 2 months ago #
Well, well. What can I do then?
Change your WordPress theme's style.css so it does not transform h4 elements
The file is
http://blog.kibristaodtuvarmis.com/wp-content/themes/corona/style.css
The lines that cause the problem are
h4{font-size:14px; clear:both; text-transform: uppercase;}
and
.entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6{
font-size: 11px;
font-weight: bold;
letter-spacing: 1.5px;
text-transform: uppercase;
font-style: normal;
}
egegorgun
Member
Posted 2 months ago #
Hi Russel,
Your advice definitely worked my problem out. Thanks!