Troubles with repeating background image | XM Community
Solved

Troubles with repeating background image

  • 14 June 2019
  • 1 reply
  • 8 views

Userlevel 5
Badge +6
  • Level 3 ●●●
  • 197 replies
Hello,
I'd like to have my repeating background image everywhere outside but not directly above the `.SkinInner`. I don't care much whether the background image will be also bellow the `.SkinInner` or whether the `.SkinInner` will always end at the very bottom of the page. Unfortunately, I have following troubles with this.

When I put this image into the CSS of `#SurveyEngineBody`, it is also above the `.SkinInner`.

#SurveyEngineBody
{background-color: #f0f0f0;
background-image:url("my_URL");
background-repeat: repeat;
background-size: 200px 200px;
min-height: 90%;}

!



But when I put the image to the CSS of `.SkinInner`, it is cut in the bottom:

#SurveyEngineBody
{background-color: #f0f0f0;}

.SkinInner
{background-color: #f0f0f0;
background-image:url("my_URL");
background-repeat: repeat;
background-size: 200px 200px;}

!



Therefore I removed both footers. It looks OK, but only when the `.SkinInner `is long enough. If its shorter there is a lot gray space without my images in the bottom of the page. Therefore I wanted to extend the `.SkinInner`, but I wasn't successful. I've also tried t remove the space above the` .SkinInner`, but I didn't manage again.

#Footer, #PushStickyFooter {display:none;}
#Wrapper{min-height: 100%;}
.SkinInner{min-height: 100%;}

!


or

!



Would anyone give me an advice how to fix this in any way? I use the Minimal blue theme and I'm not going to use neither header nor footer in this survey.
icon

Best answer by fleb 16 July 2019, 12:09

View original

1 reply

Userlevel 5
Badge +6
So finally I modified the image such that at the top is enough grey space that the ears are not visible.

Leave a Reply