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

    Dear support,
    i would like to have a permanent image overlay on my Blog-header-images like in the layout-screenshot in private section.
    Is this possible with enfold?
    Thanks for any help!

    #1400714

    Hey,

    Please add the following code to the Quick CSS field in Enfold theme options > General Styling tab

    
    .big-preview .image-overlay .image-overlay-inside::before {
      border-radius: 0;
      left: 25px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      top: 60px;
    }
    
    #top .big-preview .image-overlay {
      width: 60px !important;
      left: auto !important;
      right: 0;
      overflow: visible !important;
      opacity: 0.85 !important;
    }
    

    Best regards,
    Yigit

    #1400811

    Hey Yigit,
    thank you so much for your help!
    Is there a way to show the overlay from the first page load on? Now it shows up after the first mouseover.

    #1400830

    Hi,
    To always show the icon and prevent the hover animation I adjusted the css to this:

    .big-preview .image-overlay .image-overlay-inside::before {
      border-radius: 0;
      left: 25px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      top: 60px;
    }
    
    #top .big-preview .image-overlay {
      width: 60px !important;
      left: auto !important;
      right: 0;
      overflow: visible !important;
      opacity: 0.85 !important;
    background: transparent;
        top: 0px;
    }
    a:hover .image-overlay .image-overlay-inside {
        -webkit-animation: none;
        animation: none;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    #1400831

    Hi Mike,
    thanks for your help!
    Now the white transparent background is gone?

    #1400832

    Hi,
    How do you want the white overlay always over the image or only on hover?
    When I checked the overlay was only 60px wide on the right, I thought this was an error so I added background: transparent; to the css above, try removing this if you only wanted that.

    Best regards,
    Mike

    #1400839

    Hi Mike,
    thank you, removing background: transparent; fixed it :-)

    #1400846

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Blog image overlay’ is closed to new replies.