Join

Disable the Flipping Boxes Animation Within the Add Listing Flow

Don't want to mess with code snippets? Request for this to be a feature of MyListing Pro.

Instructions

  1. Create a new CSS code snippet.
  2. Copy the contents of code snippet below.
  3. Paste the contents into your code snippet.
  4. Review any notes that I’ve provided.
  5. Save and enable the code snippet.
  6. Test.

Snippet

Those who use the default MyListing Add Listing flow will notice the Listing Type boxes flip on hover. This code snippet is for those who just want the boxes to be clickable and not flip.

.face.ac-back-side {
    display: none !important;
}
.face.ac-front-side:hover {
    -webkit-transform: rotateX(0deg) !important;
    transform: rotateX(0deg) !important;
}