Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #378652

    Dear Kriesi
    I’m trying to change the box overlying the image in the grid blog layout. I would like to have a transparent box with not transparent text. I only manage to change the arrow but not the box. See the custom CSS that I have tried.

    I hope you can help me change the box to a transparent.

    This only changes the little arrow and not the box itself :

    /*Transparent grid box*/
    #main_color .container .av-inner-masonry-content, #top .main_color .container .av-masonry-load-more, #top .main_color .container .av-masonry-sort, .main_color .container .av-masonry-entry .avia-arrow {
        background-color: #f8f8f8;
        opacity: 0.5;
    }

    Thank you for a fantastic theme and support!

    Best regards
    Urban

    #378654

    It is the “masonry” I am trying to change. Sorry for mixing it up.

    If the solution I am asking for is to difficult, I could use a solution where the title is moved down to under the image. (like it is displayed when using the “blog grid”).

    Again, thanks for your awesome support!

    Urban

    • This reply was modified 9 years, 3 months ago by _urban_.
    #379128

    Hey!

    I think what your wanting to do is this.

    .av-inner-masonry-content {
      background: none repeat scroll 0 0 rgba(255, 255, 255, 0.4) !important;
    }

    If that’s not correct then take a screenshot and highlight what your trying to do so we can get a better idea.

    Cheers!
    Elliott

    #381289

    Hi!
    Thank you so much. That was it. However there is a little arrow that also needs to be transparent. I Changed the code slightly, and now it looks ok. But I am not sure if the CSS will affect arrows other paces on the page. I will probably realize if it does; but do you think this CSS will effect the arrow other places?

    *Transparent grid frame */
      .avia-arrow {
        background-color: #ffffff;
        opacity: 0.5;
    }
    
    .av-inner-masonry-content {
      background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5) !important;
    }

    Thanks
    Urban

    #381292

    I also added this, and now I am quite happy with the result. The cropping of the images is much better like this, and could be considered for the theme itself.

    .av-inner-masonry-content {
        padding: 10px !important;
        position: relative;
        width: 1000%;
        z-index: 2;
    }

    Thanks.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Transparent contrainer under blog grid layout’ is closed to new replies.