No, I selected default template. In order to get the shiner effect as seen in the link I gave there has to be a code in the header php file like: `<div class=”Logo”>
<a href=”<?php echo esc_url( home_url( ‘/’ ) ); ?>” title=”?zgün Bilgi E?itim Kurumlar?”>
`<div class=”peShiner” style=”position: relative; padding: 0px; outline: 0px; width: 54px; height: 39px;”>
<canvas width=”54″ height=”39″ style=”position: absolute; box-sizing: content-box”></canvas>

</div>
</div>
anf you need to load the js files in the functions.php file like:
function peshiner_ob () {
wp_enqueue_script ('jquery-1.7.min', get_stylesheet_directory_uri () . '/js/jquery-1.7.min.js', array('jquery'));
wp_enqueue_script ('peshiner_get', get_stylesheet_directory_uri () . '/js/jquery.pixelentity.shiner.min.js', array('jquery'));
wp_enqueue_script ('peshiner_run', get_stylesheet_directory_uri () . '/js/preview.js', array('jquery') );
}
add_action( 'wp_enqueue_scripts', 'peshiner_ob' );
and style logo div like:
`.Logo {
width: 100px;
height: 80px;
position: absolute;
margin: 2px 0 0 8px;
}
What I want say is I can obtain the shine effect like shown in the web page I mentioned, in the themes other then oceanWP. Some thing in oceanWP prevents it. And I think it is about the canvas property because when inspect this issue with mozilla firefox and look the canvas section it says that “canvas error debugger could not find and requestAnimationFrame or setTimeout loop”. However when I did the same in the themes other than oceanWP no error message appears and canvas property loads the image.
I can that there is no problem with coding I did, I checked it many times and it workes in the themes other than oceanWP.
I dont want to use other theme because of that because I liked oceanWP theme. But I cannot find a solution to that unfortunately I will have to use other themes.
Thanks in advance.