Jump to content

Recommended Posts

Posted

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

Posted

All you need to do is remove this HTML from Header.html

 

 

 

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'

});

});

 

 

 

Posted

I have tried this, but it does nasty things to the overall theme. The footer wraps around twice, there are a few bars that do the same and the formatting gets messed up.

 

See before and after Pics:

 

after.jpg

before.jpg

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...