Tagged: ,

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

    Hey Ismael,

    Another CSS query for you if you can.

    We are using the ALB Masonry element in many places, but setting the Background colour setting in the ALB element only seems to affect the filter section, and not the spaces between the individual masonry items.

    The only way we’ve been able to change that colour is with some CSS that is far from ideal as it affects multiple areas of the site (eg: the breadcrumb area, which we then have to overwrite with more css).

    The CSS used is:

    #main, .avia-msie-8 .av_header_sticky_disabled#header {
    background-color: #191919;
    }

    If you take a look at the example page in private, you’ll see there is black between the masonry items. But only due to this CSS above. Is there a better way to target this area? Any why isn’t the colour setting in the ALB element itself affecting the entire masonry element?

    Hope that makes sense, and thanks for the assistance as always.

    Tim

    #1480698

    Hey Tim,

    Thank you for the inquiry.

    Have you tried moving the element inside a Color Section and applying a background color? If you need the section container to be full-width, you can make this modification.

    https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    You can also target the inner av-masonry-container.

    .av-masonry-container {
        background: red;
    }

    Best regards,
    Ismael

    #1480699

    Hey!

    This should also help:

    .av-large-gap.av-masonry:after {
        content: " ";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    Cheers!
    Ismael

    #1480700

    Hey Ismael,

    Thanks for the fast reply.

    I’ve tried

    .av-masonry-container {
        background: red;
    }

    but if you try it you will see that for some reason the left hand vertical edge doesn’t get affected. All other parts do, but never that left hand edge. It’s odd, and why I ended up using the code I posted in the OP.

    I haven’t tried the 100% width color section, thanks for the tip, but too late for that as this is now used across the site in many areas.

    #1480701

    If you try the staging link again you’ll see I’ve added your 2 lots of CSS in but the left hand edge isn’t being affected.

    • This reply was modified 6 hours, 39 minutes ago by THP Studio.
    #1480706

    Hi,

    Try to remove this css code:

    .av-masonry-container {
        background: red;
    }
    

    And keep (https://kriesi.at/support/topic/background-colour-of-masonry-alb-element/#post-1480699). The Colors > Custom Background Color should be applied to the entire masonry element after removing it. You can also try this css code:

    #top .av-masonry.av-m04fp9di-542ac160671eb8fd749f26843e3e2910 {
        background-color: brown;
    }
    

    Best regards,
    Ismael

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