Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Ello all, question on background image [Sugarcube]

Hi everyone! I was just wondering if there was a specific size in Sugarcube for background images so that they'd be the full image and not cut off. I'll just show you an image of what I'm experiencing at the moment.

http://i.imgur.com/5YeUUaZ.png

Thanks!

Comments

  • edited April 2015
    It's just a CSS thing. The correct CSS will stretch to fit. Make sure you include in the css that references the image:
    background-size: cover;
    width:100%;
    height:100%;
    

    Otherwise, where do you have your background image? You need to make sure the area you put it in is actually covering the entire screen.
  • Awesome, just adding the (background-size: cover;) fixed it for me :)

    The background image is in the body section of my css sheet right now.
Sign In or Register to comment.