Hi forumfolk. Currently the background image I'm using in my styling is stretching with the character sheet window, and I'd prefer it to stick to the width of the CSS grid I've put it in. Anyone know how to do that? /* show the selected tab and structuring of grids */ .sheet-tabstoggle[value="stats"] ~ div.sheet-stats { display: grid; grid-template-columns: 95px 95px 95px 95px 95px 95px 95px 95px; grid-template-rows: 3fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr fit-content() fit-content() fit-content() 2fr fit-content() fit-content() fit-content() fit-content() 2fr fit-content() 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr; justify-content: center; background-image: linear-gradient(to left top, #6b7d97, #364e6c); } .sheet-tabstoggle[value="details"] ~ div.sheet-details { display: grid; grid-template-columns: 190px 190px 380px; grid-template-rows: 100px 750px; justify-content: center; background-image: linear-gradient(to right top, #6b7d97, #364e6c); }