I want to change default front page sensenet slider,which should cover full page of browser.I changed height of slides to 100% in file system and content explorer i also added li{height:100%} and img{height:100%}enter image description here I also want to hide/remove by default slider name which show on images.
How to make front page slider in Sense/Net 6.5.4.9243 which cover full page dimension of web browser
Asked
Active
Viewed 56 times
1 Answers
0
There're two things to modify:
Open /Root/Global/renderers/Slider.ascx and change 'snmaxheight' in the slider config (line 117.)
snmaxheight: window.innerHeight
Add the following to the slider .css file (/Root/Global/styles/snSlider.css)
.orbit-container li .text {
display: none;
}

Aniko Litvanyi
- 2,109
- 1
- 21
- 25
<%= content["DisplayName"] %>
for hide slider title. – sameer Mar 10 '17 at 10:33