• Resolved jwesseldyke

    (@jwesseldyke)


    I’d like someone with a sharp eye to do some troubleshooting for me if possible…

    I’m trying to get a background image to repeat across the page and get individual menu items to display over it… I can’t seem to get the background image to display much less repeat either with or without the menu items.

    in my css file I’m using ul class attributes to call the background image and get it to repeat and have been staring at the relevant section of navigation code in the css file and can’t seem to find the error…

    the site in question is at https://readysetchange.com

    Any suggestions would be greatly appreciated…
    Joel

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try this;

    #navigation {
    margin: 0px;
    padding: 0px;
    float: left;
    height: 25px;
    width: 100%;
    overflow: hidden;
    background: url(images/menu_bg.png);
    background-repeat: repeat-x;
    }
    #navigation .pg {
    margin: 0px;
    padding: 0px;
    float: left;
    list-style-type: none;
    }

    Thread Starter jwesseldyke

    (@jwesseldyke)

    That’s it. Thanks very, very much.

    Joel

    You are very welcome. I hope it works in more than one browser!

    ??

    Thread Starter jwesseldyke

    (@jwesseldyke)

    Works in Explorer 8 and Firefox 3.5.3 and I’m guessing if it doesn’t in other browsers it’ll display as it did before the fix… The menu buttons will show up and the rest of the menu bar will be non-existent…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘background repeat css attribute’ is closed to new replies.