The header logo bar is a general branding component of the MSState theme. It appears on all pages as part of the general header except those with the full screen hero components.
Usage
- Use the
.msu-header-maroonclass on the<header>tag to set the color as maroon. Maroon is the default and most commonly used color.
HTML
<header id="msu-header" class="clearfix msu-header msu-header-maroon" aria-label="Primary header for Website Name">
<div class="container-fluid clearfix">
<div class="row">
<div class="col-md align-self-center logo-container">
<a id="logo" href="#" title="Home">
<img src="https://cdn01.its.msstate.edu/i/logos/msstate/HORIZONTAL_WEB_white_maroon_m.svg" alt="Logo for Website Name" title="Website name" />
</a>
</div>
</div>
</div>
</header>
Usage
- Use the
.msu-header-blackclass on the<header>tag to set the color as black.
HTML
<header id="msu-header" class="clearfix msu-header msu-header-black" aria-label="Primary header for Website Name">
<div class="container-fluid clearfix">
<div class="row">
<div class="col-md align-self-center logo-container">
<a id="logo" href="#" title="Home">
<img src="https://cdn01.its.msstate.edu/i/logos/msstate/HORIZONTAL_WEB_white_maroon_m.svg" alt="Logo for Website Name" title="Website name" />
</a>
</div>
</div>
</div>
</header>
Usage
- Use the
.msu-header-whiteclass on the<header>tag to set the color as white.
HTML
<header id="msu-header" class="clearfix msu-header msu-header-white" aria-label="Primary header for Website Name">
<div class="container-fluid clearfix">
<div class="row">
<div class="col-md align-self-center logo-container">
<a id="logo" href="#" title="Home">
<img src="https://cdn01.its.msstate.edu/i/logos/msstate/HORIZONTAL_WEB_maroon.svg" alt="Logo for Website Name" title="Website name" />
</a>
</div>
</div>
</div>
</header>