Is is possible to remove the slideshow from edumoodle? I know this looks "cool", but it really slows down the experience for the students. Everytime I have removed the scripting from the header file, it messes up the page formatting.
Thanks
Is is possible to remove the slideshow from edumoodle? I know this looks "cool", but it really slows down the experience for the students. Everytime I have removed the scripting from the header file, it messes up the page formatting.
Thanks
All you need to do is remove this HTML from Header.html
<div class="FrontSlideshow">
<div class="wrapper">
<div id="slidewrap">
<div id="slideshow"></div>
<div id="loadingDiv"></div>
</div>
<script type="text/javascript">
window.RokSlideshowPath = '';
var myshow;
window.addEvent('load', function(){
var imgs = [];
imgs.push({
file: '1.gif',
title: '',
desc: '',
url: '#'
});
imgs.push({
file: '2.gif',
title: '',
desc: '',
url: '#'
});
imgs.push({
file: '3.gif',
title: '',
desc: '',
url: '#'
});
imgs.push({
file: '4.gif',
title: '',
desc: '',
url: '#'
});
myshow = new Slideshow('slideshow', {
type: 'fade',
showTitleCaption: 0,
captionHeight: 0,
width: 970,
height: 300,
pan: 20,
zoom: 30,
loadingDiv: 1,
resize: true,
duration: [2000, 2000],
transition: Fx.Transitions.Expo.easeOut,
images: imgs,
path: 'http://moodle.org/theme/EduMoodle/slideshow/images/'
});
myshow.caps.h2.setStyles({
color: '#fff',
fontSize: '13px'
});
myshow.caps.p.setStyles({
color: '#ccc',
fontSize: '11px'
});
});
</script>
<div class="clr" />
</div>
</div>
There are currently 1 users browsing this thread. (0 members and 1 guests)