Style Name Description
portlet-section-subheader A subheader that accompanies one of the headers in the section, date, byline

Examples:

Tag HTML Code Display
<h1>

<h1 class="portlet-section-subheader">
    Section Subheader
</h1>
                

Section Subheader

<h2>

<h2 class="portlet-section-subheader">
    Section Subheader
</h2>
                

Section Subheader

<h3>

<h3 class="portlet-section-subheader">
    Section Subheader
</h3>
                

Section Subheader

<div>

<div class="portlet-section-subheader">
     Section Subheader
</div>
                
Section Subheader
<span>

<span class="portlet-section-subheader">
      Section Subheader
</span>
                
Section Subheader
<th>

<table width="100%">
    <thead>
        <tr>
            <th class="portlet-section-subheader">
                Section Subheader
            </th>
        </tr>
    </thead>
    <tbody>
        <tr class="portlet-section-body">
            <td>section body text</td>
        </tr>
    </tbody>
</table>
                
Section Subheader
section body text
<tr>

<table width="100%">
    <thead>
        <tr class="portlet-section-subheader">
            <th>Section Subheader</th>
        </tr>
    </thead>
    <tbody>
        <tr class="portlet-section-subheader">
            <td>section subheader text</td>
        </tr>
    </tbody>
</table>
                
Section Subheader
section subheader text
<thead>

<table width="100%">
    <thead class="portlet-section-subheader">
        <tr>
            <th>Section Subheader</th>
        </tr>
    </thead>
    <tbody class="portlet-section-body">
        <tr>
            <td>section body text</td>
        </tr>
    </tbody>
</table>
                
Section Subheader
section body text