Change in CSS code on class: .header

Hi,

Found a cosmetic error with the background image on the main page (https://spongepowered.org/)
When you change the horizontal size of the page, the background resizes vertically, making the background to go away from the “Social bar” (Se image)

If you change one background property on the .header class you can fix it to look like this:

To do:

Change the CSS properties on the .header class from:

.header{
background:url(…/images/bg.jpg) top center/100% auto no-repeat
}

To:

.header{
background:url(…/images/bg.jpg) top center/cover no-repeat
}

4 Likes

Thanks for the report. It’s being updated now. Had to look into IE support.

I just fixed this and updated the site. It should be deployed shortly. Thanks for the catch.

2 Likes