Solved

How to add hero image to the Groups home page?

  • 10 April 2024
  • 2 replies
  • 38 views

Userlevel 3
Badge +2

Here Gamechanger community is hero image in the Groups home page, how it is done? I can add hero image only to the group, not to the Groups home page.

 

 

Edit: Mods, please fix the typo in the title 😀

Mod edit: FIXED!  :-D

icon

Best answer by Kenneth R 10 April 2024, 14:06

View original

2 replies

Userlevel 5
Badge +4

Hey @revote - so this is actually a sneaky little bit of CSS.  We did this for both Events and Groups, but in the meantime we have full customization mode for the Events page.  :) 

Here’s the code that you could use to achieve the same effect.

/* CSS for Events Header  */
.group-overview-wrapper-title{
background-image: url("https://insert_your_image_file_here.png");
height: 240px;
background-size: cover;
align-items: center;
justify-content: center;
display:flex;
margin-bottom: 32px;
margin-top: 10px;
color: white;
}

 

Userlevel 3
Badge +2

Awesome, thanks a lot @Kenneth R. Works nicely 👌

Reply