Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #31258
    Wendy
    Guest

    I am trying to set different header images for each different page of my site in Hydra … or randomise a selection, or create a slideshow … but don’t seem to be able to find a way to do this. Individual page featured images seem to have no effect. If I change the background image in the customiser, then it changes the single image for the entire site.

    Is this a limitation of the theme or is there a workaround?

    Thanks!

    #31264
    Jesse Owens
    Keymaster

    Hi Wendy-

    If you’re interested in creating more dynamic headers without using code, including the ability to use a random image background from a list or even video backgrounds, I’d recommend checking out the Crio Supertheme.

    That said, there are a few ways you could do this in Hydra. Probably the easiest way I can think of would be to use each page’s unique ID to use Custom CSS. You’ll need a couple pieces of information to do this.

    First, you’ll need each page’s ID. The easiest way to find it is to edit the page, and look in the URL for the part that looks like ?post=123 where 123 is the number of your page ID.

    Then, you’ll need the URL for each of the images you’d like to use. You can find this by clicking Edit under the image in your Media Library, where you’ll find a button at the right to copy the URL.

    With those two pieces of information in hand, head over to your Customize > Advanced > Custom JS & CSS menu and add a rule similar to this:

    body.custom-background.page-id-123 {
    	background-image: url('https://url-of-your-image/image.png') !important;
    }
    

    Simply replace “123” with your page ID, and the URL in between the single quotation marks.

    #31267
    Wendy
    Guest

    Sweet! Thank you so much Jesse. I am totally impressed at the speed and quality of support you guys are providing here. Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Use different Header background images in Hydra theme’ is closed to new replies.