You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 4 places the module uses a span with a class and CSS to make the text larger.
For consistency / styling and accessibility it's better to use a heading as that's what it is
Software Versions
DNN: 08.00.00
Module: 09.10.02
To Reproduce
Steps to reproduce the behavior:
Search the solution for aftitlelg
You will find 4 cases of this <asp:Label ID="lblHeader" CssClass="aftitlelg" runat="server" />
Describe the bug
In 4 places the module uses a span with a class and CSS to make the text larger.
For consistency / styling and accessibility it's better to use a heading as that's what it is
Software Versions
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Use h1-6 for headings
Solution
I suggest we wrap the label like this:
<h3 class="dcf-heading-3"><asp:Label ID="lblHeader" CssClass="aftitlelg" runat="server" /></h3>
So we keep the old class as a fallback.
This is a subheading inside the module where h3 seems the most appropriate?
Screenshots
The text was updated successfully, but these errors were encountered: