Creating this theme, I'm pretty new to jquery and struggling as usual.
Just watched this tutorial and decided to have a shot at making my own theme settings to simplify customization.
This is what i have so far:
(function($){
$.fn.themeSettings = function(options) {
var
slideshow = {
opacity: '0.5'
},
settings = $.extend({}, defaults, options);
};
var slideShowShadow = $('#slideShadowTop, #slideShadowBottom, #slideShadowLeft, #slideShadowRight');
slideShowShadow.css({
opacity: slideshow.opacity
});
})(jQuery);
Any help would be awesome since It's messing up all over current jquery on the theme which I have not added to it yet.
I think by the code you can see what I'm trying to accomplish but obviously since I'm new to jQuery I'm not sure how to go about it.
Any help would be much appreciated, cheers