Gender
Male
Current status of the Ning Platform is always available on the Ning Status Blog.
Gender
Male
Location
Titusville, FL
Birthday:
August 3
What's your role? Network Creator (NC) or Admin?
I created The Society of Bearded Gentlemen at www.beardedgents.com! I am 49 years old, a college grad, bearder, Bohemian, Romantic, Dog lover, and amateur photographer!
You need to be a member of Ning Creators Social Network to add comments!
Comments are closed.
Comments
It would be nice if they brought back Chat on creators. Conversations would go so much faster! *lol* Glad it worked out
add to the same code block after last ; but inside the { }
order dont matter as long as its in the curly brackets well the comapatability order bmatters slightly as the no compatability version should be last to future proof it
border-radius:some value wether its 45px or 3em whatever works;
but you need to add compatability so
-webkit-border-radius:4em;-moz-border-radius:4em;border-radius:4em;
adjust as needed
glad to help
css=appearance
javascript = custom code
.xg_avatar a .photo should do it but u will also want to round it out
yes thats this this is for 3.0 of u want to use on 2.o replace the .avatar .photo with whatever the 2.0 equiv is
havent posted it its a recycled old code from 2.0
theres 2 ways to do this
on hover using the transition rotate
or a css animation to spin constantly (or a number of times)
what i used was a simple transition to rotate it 20 degrees i think..or -20 to go left 20 tight
.avatar .photo:hover {-webkit-transform:rotate(-22deg);-moz-transform:rotate(-22deg);-o-transform:rotate(-22deg);transform:rotate(-22deg);-webkit-transition:all .4s ease-out;-moz-transition:all .4s ease-out;transition:all .4s ease-out}
ok -22 degrees srry but there ya go
i try to make all my tips a mini css lesson so ppl can learn to do it themselves