Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1493639

    I’m using the portfolio grid in a content section with dark background color. How do I remove the white squares behind the images and div grid content? I would like it to be transparent. Also when hovering the image a white square appears behind the rounded image. How do I remove this? The text in div grid content should be white. Also I would like tho add more spacing between the images.
    Thank you!

    #1493641

    Can you help me?

    #1493642

    if you only want to get rid of that white overlay – but show on hover the little round icon – try:

    .avia_transform .avia-fullwidth-portfolio a .image-overlay {
      background-color: transparent !important;
      opacity: 1 !important;
    }
    .avia_transform .avia-fullwidth-portfolio a .image-overlay-inside {
      opacity: 0 !important;
    }
    .avia_transform .avia-fullwidth-portfolio a:hover .image-overlay-inside {
      opacity: 0.8 !important;
    }
    #1493643

    Thank you for your response.
    I added your code, nothing changed. So I removed it again.
    I copied all the ‘quick CSS’ in private content so you can see if maybe something is conflicting?

    Have a nice day

    #1493644

    for the bar under the images try:

    .avia_transform #top .avia-fullwidth-portfolio .grid-content,
    .avia_transform #top .avia-fullwidth-portfolio .grid-entry-title,
    .avia_transform #top .avia-fullwidth-portfolio .avia-arrow {
      background-color:  var(--enfold-main-color-primary) !important;   /* ==== or any color you like === */
    } 
    
    .avia_transform #top .avia-fullwidth-portfolio .grid-entry-title{
      color: #FFF
    }
    #1493645

    sorry – no private content for me – i’m participant as you are.

    i thought it was your belgium site on spitsdesign
    PS: it is hard to inspect it with DEV Tools – because you merged the css.
    PPS: if you just use the minified Versions – this seems to be a better performance on modern browsers. – and it is easier to inspect.

    #1493652

    Hi,

    Thank you for the inquiry.

    The white background is from the image overlay — adding this css code should remove it.

    .avia_transform a .image-overlay {
        background-color: transparent;
    }
    

    Best regards,
    Ismael

    #1493914

    I’m using the portfolio grid on a dark background. How do I remove the white background from elements in the overview? Also how do I increase spacing in between the elements? I would like it to look like team page (see link in private content). How can I fix this?

    #1493941

    Hi,

    Thank you for the update.

    You can add this css code to make the grid items transparent and add spaces between them.

    #top .grid-entry.av_one_fourth {
        width: 20%;
        margin-right: 5%;
    }
    
    #top .grid-entry .inner-entry {
        background-color: transparent;
    }
    
    #top .grid-entry .grid-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    Let us know the result.

    Best regards,
    Ismael

    #1493951

    Thank you for helping me out. It looks perfect! Now my client will review it.
    Have a nice day!

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