Image version: https://i.sstatic.net/ExaGb.png
I'm encountering some difficulties when trying to update the appearance of my page PrintExtraInfo.aspx.
In PrintExtraInfo.aspx:
<asp:Table ID="Table1" runat="server">
<asp:TableRow>
<asp:TableCell CssClass="ContactLeftTD">
<span class="minititle">Auktionsnummer:</span>
<div class="divider3">
</div>
<asp:Label ID="AuctionID1" runat="server"></asp:Label><br />
<div class="divider3">
</div>
In Main.css:
.minititle
{
font-size:20px;
color:#004c93;
font-weight: bold;
text-decoration: underline;
}
Despite changing the color, it remains black. I have to use F12 (Developer tools in Google Chrome), locate the specific spot, and check the box for the color to take effect. Is there a solution to this?
Moreover, altering the font size doesn't yield any changes, without any checkbox or indication as to why. As a CSS novice, I would greatly value any assistance provided.
I have included all necessary information in the image at the top for visual reference.
Thank you in advance.