I'm stumped trying to resize the [title] in my container.
I know that it's using the class [HX] and not [Head] because it's using the color specified in [HX]. But why won't it change the height? Also, it works in FoxFire, but not IE7.
standard.html
--------------------
<link rel="stylesheet" href="container.css" type="text/css" />
<div>
<div class="HX"></div>
<div>
<div class="HX">[ACTIONS]</div>
<div class="HX">[ICON] [TITLE]</div>
</div>
<div style="padding:0px 10px 10px 13px;" id="common">
<div align="left" id="ContentPane" runat="server" class="Normal"></div>
</div>
<div style="padding:0px 10px;">
<div class="HX" style="float:left;">[ACTIONBUTTON:1]</div>
<div class="HX" style="text-align:right;">[ACTIONBUTTON:2][ACTIONBUTTON:3][ACTIONBUTTON:4]</div>
</div>
</div></div></div>
<div><img src="spacer.gif" alt="spacer" height="10" /></div>
container.xml
--------------------
<Objects>
<Object>
<Token>[TITLE]</Token>
<Settings>
<Setting>
<Name>CssClass</Name>
<Value>HX</Value>
</Setting>
</Settings>
</Object>
container.css
--------------------
.Head
{
font-family:Tahoma, Arial, Helvetica, sans-serif;
font-size:44px;
font-weight:bold;
color: #890E89;
}
.HX
{
font-family:Tahoma, Arial, Helvetica, sans-serif;
font-size:44px;
font-weight:bold;
color: #89EF89;
}
.Normal
{
font-family:Tahoma, Arial, Helvetica, sans-serif;
font-size:11px;
font-weight:normal;
padding:0px 0px 0px 0px;
}
<div>
<div class="HX"></div>
<div>
<div class="HX"><dnn:ACTIONS runat="server" id="dnnACTIONS" /></div>
<div class="HX"><dnn:ICON runat="server" id="dnnICON" /> <dnn:TITLE runat="server" id="dnnTITLE" CssClass="HX" /></div>
</div>
<div style="padding:0px 10px 10px 13px;" id="common">
<div align="left" id="ContentPane" runat="server" class="Normal"></div>
</div>
<div style="padding:0px 10px;">
<div class="HX" style="float:left;"><dnn:ACTIONBUTTON1 runat="server" id="dnnACTIONBUTTON1" CommandName="AddContent.Action" DisplayIcon="True" DisplayLink="True" /></div>
<div class="HX" style="text-align:right;"><dnn:ACTIONBUTTON2 runat="server" id="dnnACTIONBUTTON2" CommandName="SyndicateModule.Action" DisplayIcon="True" DisplayLink="False" /><dnn:ACTIONBUTTON3 runat="server" id="dnnACTIONBUTTON3" CommandName="PrintModule.Action" DisplayIcon="True" DisplayLink="False" /><dnn:ACTIONBUTTON4 runat="server" id="dnnACTIONBUTTON4" CommandName="ModuleSettings.Action" DisplayIcon="True" DisplayLink="False" /></div>
</div>
</div></div></div>
<div><img src="<%= SkinPath %>spacer.gif" alt="spacer" height="10" /></div>