• MyBB Question Related
    4 replies, posted
Hello guys, well hope someone can help me with this, :P A few hours ago, i downloaded this theme "http://mods.mybb.com/view/basscode-blue-gray" and im transforming it to "RED" instead of "BLUE" the thing is that i've search in the WHOLE CSS... and i can't change so if you put your mouse at the button and then move it to another place it will hover: ( grey ) and after that transform to BLUE instead of RED .___. the whole website is red, and i can't find anywhere inside the css the "BLUE COLOR" Anyone know about this ;0 i'll really appreciate it thanks !
can you post ur forum.
[url]http://forum.carnagegaming.net/[/url] Thanks*
its not the css doing that. it's the javascript [code]$('input.button, .post_buttons a, a.large_button') .mouseenter(function() { $(this).stop(true, true).animate({ backgroundColor: '#606060', borderColor: '#707070' }, 200); }) .mouseleave(function() { $(this).stop(true, true).animate({ backgroundColor: '#49aaeb', borderColor: '#7ccaff' }, 200); });[/code] hf finding that
[QUOTE=jung3o;46579836]its not the css doing that. it's the javascript [code]$('input.button, .post_buttons a, a.large_button') .mouseenter(function() { $(this).stop(true, true).animate({ backgroundColor: '#606060', borderColor: '#707070' }, 200); }) .mouseleave(function() { $(this).stop(true, true).animate({ backgroundColor: '#49aaeb', borderColor: '#7ccaff' }, 200); });[/code] hf finding that[/QUOTE] Thanks !!! works now :D
Sorry, you need to Log In to post a reply to this thread.