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.

Background image template

So it may be positioned reliably across a variety of screen sizes, the background image must use the Photoshop template below.

Hero banner Photoshop template (PSD, 4.3 MB)


Default hero banner

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/cta-example1.jpg);">

    <div class="container">
        <div class="bg" style="background-image: url(../../assets/docs/images/cta/cta-example1.jpg);"></div>

        <div class="fg">
            <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>

<!-- End pattern: hero-banner //-->

Hero banner with sections

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/cta-sections.jpg);">

    <div class="container">
        <div class="bg" style="background-image: url(../../assets/docs/images/cta/cta-sections.jpg);"></div>

        <div class="fg">
            <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>

<!-- End pattern: hero-banner //-->

Hero banner no background

Ever to excel

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 News

Code
<!-- Begin pattern: hero-banner //-->

<div class="hero-banner">

    <div class="container">
        <div class="bg"></div>

        <div class="fg">
            <div class="call-heading">Ever to excel</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>
                    <a class="btn btn-primary btn-lg" href="#">News</a>
            </p>
        </div>
    </div>
</div>

<!-- End pattern: hero-banner //-->