Okay
  Public Ticket #840093
Product Grid
Closed

Comments

  • Ivan started the conversation

    Hi:

    I have twice configured the Aurum theme as a bookstore. However, the Books page is empty. I want my books to appear in the same manner as they are shown in your live demo, with a grid of books with pagination and the price only showing when you hover of the book's thumbnails.  How do I do this? I have tried configuring the grids that come with the theme to no avail.

    Iván

  • [deleted] replied

    Hi Ivan,

    I saw that you have added Books to your homepage.

    Prices are shown by default, however if you want to show the price only on hover, then add this CSS code:

    .products.owl-carousel .item-info .price {
    opacity: 0;
    transition: 350ms all ease-in-out;
    }

    .products.owl-carousel .product:hover .item-info .price {
    opacity: 1;
    }
    It will work like this:

    http://drops.laborator.co/171Oo