Search code examples
csswebnavigationbackground-image

Repeat background image in Nav Bar


I would like to include the repeated background image that is on my background to my navigation bar as well.

#navigation-top, #navigation-bottom {
background-color: #fff;
width: 100%;
}

http://www.sanisportwest.com/


Solution

  • The problem on your site is that "image.jpg" does not exist.

    #navigation-top, #navigation-bottom {
        background: #fff url('path/to/image.jpg') repeat;
        width: 100%;
    }
    

    If you only want it to repeat left to right (and not up and down), use repeat-x.