Digital pattern library

Hero banner

The hero banner pattern displays a large heading, introductory text and a call-to-action over an optional, large background image.

Options for the hero banner

Rules

Image guidelines

Text guidelines

Video guidelines

Background image template

The background image must created using the Photoshop template below so it can be positioned reliably across a variety of screen sizes.

Hero banner Photoshop template (PSD, 4.3 MB)


Hero banner

If the chosen background image is not overly complicated and has strong colours, this option may be used instead of the transparent overlay option.

Scotland's first university

Discover what it’s like to study at St Andrews. Search undergraduate courses, explore postgraduate opportunities or find flexible study options.

Study at St Andrews

Code
<!-- Begin pattern: hero-banner //-->
<div class="hero-banner " style="background-image: url(../../assets/docs/images/cta/hero-banner-image-001.jpg);" title="hero banner">
    <div class="container">
        <div class="fg row">
            <div class="col-xs-12 col-md-8">
                <div class="call-heading">Scotland's first university</div>
                <p>Discover what it’s like to study at St&nbsp;Andrews. Search undergraduate courses, explore postgraduate opportunities or find flexible study options.</p>
                <p>
                <a class="btn btn-primary btn-lg" href="#">Study at St&nbsp;Andrews</a>
                </p>
            </div>
        </div>
    </div>
</div>
<!-- End pattern: hero-banner //-->

Hero banner with transparent overlay

If the chosen background image is overly complicated, this option should be used instead of the default hero banner. The colour of the transparent overlay and hero banner button should not be altered.

Choose St Andrews

Study at the University of St Andrews and experience world-class teaching, cutting edge research and the flexible degree structure of Scotland’s first university.

Search for courses

Code
<!-- Begin pattern: hero-banner //-->
<div class="hero-banner transparent-overlay" style="background-image: url(../../assets/docs/images/cta/hero-banner-image-002.jpg);" title="hero banner">
    <div class="container">
        <div class="fg row">
            <div class="col-xs-12 col-md-8">
                <div class="call-heading">Choose St&nbsp;Andrews</div>
                <p>Study at the University of St&nbsp;Andrews and experience world-class teaching, cutting edge research and the flexible degree structure of Scotland’s first university.</p>
                <p>
                <a class="btn btn-primary btn-lg" href="#">Search for courses</a>
                </p>
            </div>
        </div>
    </div>
</div>
<!-- End pattern: hero-banner //-->

Hero banner with embedded video

Scotland's first university

Discover what it’s like to study at St Andrews. Search undergraduate courses, explore postgraduate opportunities or find flexible study options.

Study at St Andrews

Code
<!-- Begin pattern: hero-banner //-->
<div class="hero-banner " style="background-image: url(../../assets/docs/images/cta/hero-banner-image-001.jpg);" title="hero banner">
    <div class="container">
        <div class="fg row">
            <div class="col-xs-12 col-md-7">
                <div class="call-heading">Scotland's first university</div>
                <p>Discover what it’s like to study at St&nbsp;Andrews. Search undergraduate courses, explore postgraduate opportunities or find flexible study options.</p>
                <p>
                <a class="btn btn-primary btn-lg" href="#">Study at St&nbsp;Andrews</a>
                </p>
            </div>
            <div class="col-xs-12 col-md-5">
                <div class="embed-responsive embed-responsive-16by9"><iframe src="https://www.youtube.com/embed/JxHfSwpddCU?rel=0&amp;amp;showinfo=0" allowfullscreen=""></iframe></div>
            </div>
        </div>
    </div>
</div>
<!-- End pattern: hero-banner //-->