Skip to content

Commit

Permalink
fix: Display background overlay on alternating front-page sections
Browse files Browse the repository at this point in the history
  • Loading branch information
delucis committed Mar 4, 2019
1 parent e634ac6 commit 2966e20
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions front-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,14 @@

if ($posts) {
echo component('member_list', array(
"members" => $posts
"members" => $posts,
'classes' => array('bg-overlay')
));
}

// Display archive link
?>
<section id="fp-archive-link" class="fp-section fp-section--archive-link bg-overlay">
<section id="fp-archive-link" class="fp-section fp-section--archive-link">
<div class="fp-archive-link">
<?= component('button_link', array(
'href' => get_post_type_archive_link('concert'),
Expand Down

0 comments on commit 2966e20

Please sign in to comment.