Results 1 to 4 of 4

Thread: Website width and height help

  1. #1
    Doyouvideos is offline Member
    Join Date
    Jan 2009
    Location
    United States of America
    Posts
    58

    Smile Website width and height help

    Hi my website doyouvideos.com doesn't fit the whole screen when I view it on a 17 inch monitor or higher. I need the code and where to put the code so that my site fits all screen monitors correctly

  2. #2
    buyscripts is offline Super Moderator
    Join Date
    May 2007
    Posts
    840

    Default

    Findout

    #wrapper in css/stlye.css and modify like below

    #wrapper {
    background-color:#FFFFFF;
    margin:0 auto;
    min-width:100%;
    padding:0;
    text-align:left;
    width:100%;
    }

  3. #3
    yasas177 is offline Junior Member
    Join Date
    Jan 2010
    Posts
    2

    Default

    Try this css also,

    The markup
    <div id="background">
    <img src="img.jpg" class="stretch" alt="" />
    </div>

    The css
    #background {

    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;

    }

    .stretch
    {
    width:100%;
    height:100%;

    }




  4. #4
    Doyouvideos is offline Member
    Join Date
    Jan 2009
    Location
    United States of America
    Posts
    58

    Default Thanks Buyscripts

    Thanks again.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •