Search code examples
htmlcssbackground-imagebackground-repeat

Make background image repeat even after scrolling to the right


This is the problem http://screencast.com/t/Dgfd5vTeEY

This is the site http://eotomarketingsystems.com/

I have looked everywhere but the only method i got the background image to be full width. was by using the method here: CSS Tricks—Full Background Image, but it was made background-image fixed which messed everything up. is there a simpler way to just make it reach that area after you scroll to the right?


Solution

  • Now Define min-width in your body css as like this

    if your main wraper width is 980px;

    than define your

    body{
    min-width:980px;
    }