Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Rotate background image

Started by Richard Redcroft 9 years ago · 2 replies · 1447 views
9 years ago

Hi,
We are using the gateway theme, is it possible to have the background image be a random image?

Preferably a background image slider, is this possible?

Thanks

👍 1
9 years ago

Create a child theme and overwrite /templates/partials/header.html.twig in your child theme.

TWIG
.home-header-bg {
  background:url( '{{ theme_url }}/img/{{ site.header.background }}' ) #ffffff no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

should be something like

TWIG
background:url( '{{ page.media.images | randomize | first }}' )

(not tested, no guarantee, but the direction should be correct.

👍 1
9 years ago

@Redsith:
Preferably a background image slider, is this possible?

You could use Vegas

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by FrViPofm, 15 hours ago
1 29 2 hours ago
Themes & Styling · by stuart young, 1 month ago
3 480 1 month ago
Themes & Styling · by Sebadamus, 2 months ago
5 481 2 months ago
Themes & Styling · by martynfoster735, 2 months ago
1 460 2 months ago
Themes & Styling · by Justin Young, 2 months ago
1 490 2 months ago