I am trying to set up some css rules. To do so I have appended this code to the override.css file:
- Code: Select all
- /*MORPH*/
 .morph {
 -webkit-transition: all 0.5s ease;
 -moz-transition: all 0.5s ease;
 -o-transition: all 0.5s ease;
 -ms-transition: all 0.5s ease;
 transition: all 0.5s ease;
 }
 
 .morph:hover {
 border-radius: 50%;
 -webkit-transform: rotate(360deg);
 -moz-transform: rotate(360deg);
 -o-transform: rotate(360deg);
 -ms-transform: rotate(360deg);
 transform: rotate(360deg);
 }
Then, I should see some effects when using this html code:
- Code: Select all
- <div class="morph pic">
 <img src="http://lorempixel.com/300/300/nature/5" alt="beach">
 </div>
However, I see nothing. I am trying to use Firebug, but I'm quite new to Joomla and I have some trouble using it. Could you please help me on how to use the overrides?
Thanks!
Dani

