I want to make the big logo that i made from the center to the top left corner and strink down to half of the size, after i click on an option button below. (not the logo itself) Is there a way to do it in jquery???
Responses (1)
Definitely. Work out the CSS for your new configuration and then write a jQuery function which applies the CSS to the image container (a div or a span). Finally, call the jQuery function in the event which handles your button press.
For instance:
this.find('div.mydiv').css('float', 'none');
This will apply the CSS defloat all divs named mydiv. Pick a unique name for your and then apply the new CSS (or better still, apply a different class with all the CSS in it).