[XB] Badges

[XB] Badges 2.3.7

No permission to download
OK @Gemma, you are always several (many) steps ahead of me. I'm trying to change how they are displayed to a vertical image with the description below and rows just like you are showing there.

If you're willing, would very much appreciate seeing your CSS to get me started. Feel free to PM me if you prefer. Can't thank you enough!
 
If you're willing, would very much appreciate seeing your CSS to get me started.
This should get you started....

CSS:
[data-content-key="help_page-ozzmodz_badges"] {
    .contentRow-figureIcon {
        img {
            width: 200px; /// change 200px as required ///
        }
    }
    .badge-category {
        .block-body {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /// change 300px as required ///
            grid-gap: 6px;
            .block-row.block-row--separated {
                padding-top: 24px;
                border-radius: 0px;
            }
            .contentRow {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                .contentRow-figure {
                    margin-bottom: 10px;
                }
                .contentRow-main {
                    padding-left: 0px;
                }
            }
        }
    }
}
 
So this add-on isn't working well for me. It seems to not respect some of the criteria especially when multiple criteria are listed.

For example, I select the badge if the user has an avatar and added a signature. The system gives the badge even when neither of those are true.

Anyone else finding issues with the current version on 2.3.6?
 
Back
Top Bottom