Tagged: ,

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #709410

    HI,

    we are using the travel demo. and the product grid on the front page is great! how do we stop the title from disappearing the mouse hovers over it?

    travel.bananatreenews.com

    Thanks

    #709668

    Hey grwebs,

    Try to add this code in Quick CSS (located in Enfold > General Styling):

    #top #wrap_all .inner_product_header {
        opacity: 1 !important;
        visibility: visible !important;
    }

    Let us know if it works :)

    Best regards,
    Nikko

    #710489

    Hi! that worked but we would like to have the picture expand like it did before

    #710501

    Hi,

    Try adding this code in Quick CSS:

    #top .avia-content-slider .thumbnail_container img {
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    
    #top .avia-content-slider a:hover .thumbnail_container img {
        -webkit-transform: scaleX(1.2,1.2);
        -ms-transform: scaleX(1.2,1.2);
        -o-transform: scaleX(1.2,1.2);
        transform: scaleX(1.2,1.2);
    }
    

    Let us know if it works :)

    Best regards,
    Nikko

    #710873

    it seems not to work. here is a screen shot of what picture i want to increase on hover.

    https://www.evernote.com/l/ANc9k_ZPmhZFRogSBhWPxgTUCN6ym3nbCpw

    travel.bananatreenews.com

    #711089

    Hi,

    It should work, but since it didn’t work I would like to check the backend. Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    #711727

    You have permission to deativate any plug ins.

    if you deactivate woo commerce the front 2 items i want to hover when moused over… they will disappear .

    #711742

    Hi!

    It should work now. I have replaced this code:

    #top .avia-content-slider a:hover .thumbnail_container img {
        -webkit-transform: scaleX(1.2,1.2);
        -ms-transform: scaleX(1.2,1.2);
        -o-transform: scaleX(1.2,1.2);
        transform: scaleX(1.2,1.2);
    }

    To this code:

    #top .avia-content-slider a:hover .thumbnail_container img {
        -webkit-transform: scale(1.2,1.2);
        -ms-transform: scale(1.2,1.2);
        -o-transform: scale(1.2,1.2);
        transform: scale(1.2,1.2);
    }

    Best regards,
    Nikko

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.