Skip to content

Instantly share code, notes, and snippets.

@sophiawzey
Created November 29, 2018 18:17
Show Gist options
  • Save sophiawzey/817ff278d32a359f7282b408c29ce092 to your computer and use it in GitHub Desktop.
Save sophiawzey/817ff278d32a359f7282b408c29ce092 to your computer and use it in GitHub Desktop.
[Banner] Normal Banner #acf
.banner {
min-height: 200px;
text-align: left;
display: flex;
align-items: center;
padding: 3rem 0;
&__title, &__body {
color: #fff;
}
}
<?php
$img = get_field( 'banner_image' );
$title = get_field( 'banner_main_headline' );
$body = get_field( 'banner_short_body_copy' );
?>
<div class="banner" style="background:url(<?php echo $img ?>) no-repeat center; background-size: cover;">
<div class="grid-container">
<div class="grid-x grid-margin-x">
<div class="cell medium-10 large-8">
<h1 class="banner__title">
<?php echo $title ?>
</h1>
<div class="banner__body">
<?php echo $body ?>
</div>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment