Topic: How can i deactivate this???

My Problem is
i would deactivate that the background didn't flash yellow???
http://www.imagecheese.com/images/unbenannt.jpg

Thanks.

I know my english is bad ^^

Re: How can i deactivate this???

open effects.js in the js folder an find

var options=Object.extend({startcolor:'#ffff99'},arguments[1]||{});
this.start(options);
},
setup:function(){
if(this.element.getStyle('display')=='none'){this.cancel();return;}
this.oldStyle={};
if(!this.options.keepBackgroundImage){
this.oldStyle.backgroundImage=this.element.getStyle('background-image');
this.element.setStyle({backgroundImage:'none'});
}
if(!this.options.endcolor)
this.options.endcolor=this.element.getStyle('background-color').parseColor('#ffffff');

change startcolor:'#ffff99'.. to '#ffffff' and the yellow fade effects becomes invisible smile

Thumbs up

Re: How can i deactivate this???

Thank you very much! smile

Re: How can i deactivate this???

easy.. open js/rules.js and then delete this:

'#contenedorupload' : function(element){
        element.onclick = function(){
            new Effect.Highlight(this,{duration: .5});
        }
    },
rodolfoberrios.com | PLEASE use Tech Support forums to ask for support!