Search code examples
htmlcsspositioning

Right banner margin CSS


On the site: ukrainiansecret.com

I would like to get rid of that green right margin of the banner, and to have it exactly as the left side. Have tried to stretch the banner width but it didn't work out.

Thanks


Solution

  • The quick and dirty way I did it was add a width:100%; to the div.banner_main, ul#portfolio, ul#portfolio li and ul#portfolio li img - that will make the image stretch all the way across the screen.

    Example:

    div.banner_main,
    ul#portfolio,
    ul#portfolio li,
    ul#portfolio li img {
      width:100%;
    }