Hello!
Wonderful theme, congrats!
I’ve two question about the slider: how can I change the height of the slider? And, it’s possible to put a content over the slider, so it stay fixed and the background slide as original?
Thank you!
Hello!
Wonderful theme, congrats!
I’ve two question about the slider: how can I change the height of the slider? And, it’s possible to put a content over the slider, so it stay fixed and the background slide as original?
Thank you!
- To change the height, please look at js/script.js line 19
- To put content over the slider, right before <div id="home-slider"> (index.html, line 110), insert:
<div class="content-over-slider">
Your content
</div>
and add new CSS:
#home-slider {position: relative}
.content-over-slider {position: absolute; z-index: 10}
.md-slide-wrap {z-index: 1}
All you need now is style your content.