miranto
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Omega] css3 animationyour image inside the body will be like example:
<body> <ul id="effect"> <li> <img src="your_image.jpg" /> </li> </body>the “effect” is a css id in which you specify your css properties and values.
you will have in your css file:#effect { list-style:none; margin:100px 0; height:550px; } #effect li { display:inline; float:left; -webkit-perspective: 500; -webkit-transform-style: preserve-3d; -webkit-transition-property: perspective; -webkit-transition-duration: 0.5s; } #effect li:hover { -webkit-perspective: 5000; } #effect li img { border:10px solid #fcfafa; -webkit-transform: rotateY(30deg); -moz-box-shadow:0 3px 10px #888; -webkit-box-shadow:0 3px 10px #888; -webkit-transition-property: transform; -webkit-transition-duration: 0.5s; } #effect li:hover img { -webkit-transform: rotateY(0deg); }After you do that you will have a nice rotation effect.
Forum: Themes and Templates
In reply to: [Omega] Footer – Copyright in Family child themeHi kimkhd to fix it you will need to access the hooks file via an ftp client, connect to your site locate the hooks file which is in /wp-content/themes/omega/lib/hooks.php download it and edit it offline using the text editor of your choice and review the code this is what I used:
/* If there is a child theme active, use [child-link] shortcode to the $footer_insert. */
return ‘<p class=”copyright”>’ . __( ‘Copyright © [the-year] [site-link].’, ‘omega’ ) . ‘</p>’ . “\n\n”;
}
/**I unclude the comments to make it easier to find it. Once you modify it, upload again to your site I would recommend you to back up your current hooks file. Once uploaded refresh your browser and you should be good to go