Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS i cant workout how to make my logo rotate on rollover …help please?!

  • This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #44725
    painefw
    Member

    Hi, So basically i would like the logo of my website to rotate on rollover. Im running a theme i recently bought on wordpress and have been struggling amending the right bits of code.

    I have managed to find the code to actually make the transition

    .rotate{
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;

    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;

    overflow:hidden;

    }

    .rotate:hover
    {
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
    }

    [EXAMPLE](http://blog.vivekv.com/demo/rotate_image/ “EXAMPLE”)

    I just have no idea where i am supposed to place this code in order to create this effect. I am assuming in the stylesheet but nothing that i am trying is working. My website is live [here](http://dmstremel.com “here”):

    if you need any more info, bits of code to further assist me do let me know.

    any help would be greatly appreciated

    #134843
    painefw
    Member

    Im still not having much luck getting this to work. So as suggested, i have placed the code that i found in my stylesheet along with the piece of code that you have so kindly given me ( pbviously changing the img src to that of the image…. but nothing is happening?? what am i doing wrong @mottie??

    #134844
    painefw
    Member

    I hope im not just being silly!

    #134840
    painefw
    Member

    okay so i have placed the css code in the stylesheet, the other piece of code(html) needs to go into one of the php files?

    I’m not sure if this theme is just bugging out because ive made this code work before with a previous theme. Ive tried putting that snippet of code inside every php but to no avail. Index, sidebar, header…. none of them seem to work.

    #134851
    painefw
    Member

    under theme-options.php there is talk of logo, however this seems to be pretty much the only time such a phrase is used in any of this themes code: it goes as follows

    Logo url

    If left blank, theme will not display logo.

    #134852
    painefw
    Member

    now ive made my site go blank, this is an actual nightmare!

    #134863
    painefw
    Member

    after a lot of messing around, i had a good think about it and it just all of a sudden made a billion times more sense to me with regards to what i was doing wrong. The piece of code your referring to on my end was basically a condtional ‘if’ ‘else’ statement that i was trying to add to instead of just getting rid of it all completely. Got there in the end. Thank you very much for you help and more importantly putting up with my incontinence!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘CSS’ is closed to new topics and replies.