Can't get font smaller (Profile)

Morgain

Well-known member
I have styled the user's name on their Profile page using a class in EXTRA.css

Code:
.RoundedDivTitleUser
{
font-size: xx-large;
text align: center;
width: 50%;
padding: 5px;
padding-left: 25px;
margin: margin-left 20px; margin-bottom 15px;
border: 1px solid #ffcc00;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
border-image: initial;
box-shadow: 10px 10px 10px #eecfa1;
}

In member_view I used this class like this on the profile owner's name::

Code:
<div class="RoundedDivTitleUser" style="margin-left: 15px">
<h1 itemprop="name">{xen:helper richUserName, $user} </h1> 
<div class="userTitle" style="margin-left: 15px">{xen:helper userTitle, $user} of {$xenOptions.boardTitle}.</div>
</div>

I want the user title line (under the user name) to be medium or maybe large font, not the xx-large of the title.
So far no success whether I try adding a second property to RoundedDivTitleUser
or add stuff locally like <dd> in the template member_view.
 
Top Bottom