• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

How can i deactivate this???

booyaka95

Chevereto Noob
My Problem is
i would deactivate that the background didn't flash yellow???
unbenannt.jpg


Thanks.

I know my english is bad ^^
 
open effects.js in the js folder an find

Code:
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 🙂
 
easy.. open js/rules.js and then delete this:
Code:
'#contenedorupload' : function(element){
		element.onclick = function(){
			new Effect.Highlight(this,{duration: .5});
		}
	},
 
Back
Top