Add slider (with different graphic or height) to inner pages

Hi there!

Awesome theme, I love it.

I was curious as to how to add the slider banner to all pages, not just the homepage. I came across this thread, which did exactly that:

https://colorlibsupport.com/t/please-help-update-messed-up-child-theme/#post-39233

Is it possible at all the have a different banner image display on the inner pages? Or maybe a way to make the height a bit shorter just so the viewer realizes they are inside the site?

Thanks so much!

Hi @redinfluence,

I hope you are well today and thank you for your question.

maybe a way to make the height a bit shorter just so the viewer realizes they are inside the site?

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS


.flexslider, 
.flexslider .slides li {
    max-height: 350px !important;
}

body.home .flexslider, 
body.home .slides li {
    max-height: 99999px !important;
}

Please change the height 350px in the above CSS code to whatever you want to set for internal pages.

Best Regards,
Movin

That did it! Thank you :slight_smile:

You are most welcome here :slight_smile: