Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #605326

    Hi,

    When using the ALB to create a post I can add a featured image on top and give it the “Slightly increase image size” hover effect.

    Some of my users really won’t use the ALB but like that effect.

    So I was wondering what I would need to change so that:

    – the standard featured (default editor) image won’t have the current overlay (fade-in arrow)
    – the standard featured (default editor) image has that “Increase size” effect.

    I was looking through the single.php but could not find anything there.

    Thanks in advance!

    #605336

    Hi mtupuschies!

    Can you please post the link to your blog post which have desired effect and one that you would like to change?

    Cheers!
    Yigit

    #605462

    Hi Yigit,

    I won’t be able to give you access to the live site since its used on a local server which is not accessible online.
    But I have installed a new page on my private server – see private section.

    You will find two posts. One which is created with the default editor where the featured image is set automatically.
    The other one is build with the ALB and an image is added to the top.

    I would like to have the general Featured image behave like the one in the second post – no overlay, just the increase.

    Any chance this can be done?

    • This reply was modified 8 years, 7 months ago by mtupuschies. Reason: Misspelled the name :)
    #606079

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .big-preview.single-big img {
        -webkit-transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
        transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    }
    .big-preview.single-big:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    .big-preview.single-big .image-overlay {
        display: none!important;
    }

    Best regards,
    Yigit

    #606245

    Thanks a million for the fast response, Yigit!
    Exactly what I was looking for.

    Really appreciate the support!

    #606247

    Hi!

    Glad we got it short out.
    Please do let us know if we can do anything else for oyu, to assist further

    Regards,
    Basilis

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