Hello!
Is it possible to get the categories and forum names background (the black boxes) on my site to be opacity 50 instead of a hundred and make them partly see through? Can I add that in somewhere in CSS?
regards,
@oreias Yes, you can add any custom CSS to your forum, look into doc https://docs.mywebforum.com/admin/general-settings#custom-css
You can try using this css:
1 2 3 |
.v-card.v-sheet.v-sheet--shaped.theme--dark { opacity: 0.5; } |
but I would recommend to use opacity: 0.9
90% looks really nice to me. 😍