Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Turn Off Transitions in Sugarcane

I'm sure this is easy, but I can't find it anywhere.

I am learning about stylesheets and need some help. How do I turn OFF the transitions in Sugarcane?

Thanks!

Comments

  • Try adding the following CSS into your main Stylesheet  passage:

    .passage:not(.transition-out) {
    transition: none;
    -webkit-transition: none;
    }
  • Thank you, Greyelf!!
    Worked like a freakin' charm!
Sign In or Register to comment.