1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

Web Design Altering the size/width of a template?

Discussion in 'Web Design' started by Shag, Jun 3, 2007.

  1. Shag

    Shag New Member

  2. Graciella

    Graciella New Member

    You probably need to go through .css file and html file to find width and then adjust it to your desired width (it seems to be width: 532px; into css under wrapper, body etc..). Depend on design you will probably need to adjust and some widht of images and other parameters but you will come behind if you start with editing and then refreshing site.
    Good luck!
     
  3. Shag

    Shag New Member

    Thanks for the info - that's helpful!

    I'm finding that the background uses a 1px high repeating image (to create the black background, bordered by the yellow bars). If I want to use a variable page size (using percentages, rather than fixed pixels), how can I create the background image to also be variable width?
     
  4. lmfrench

    lmfrench New Member

    In the CSS this is what you will want to change...

    #wrapper {
    margin: auto;
    text-align: left;
    width: 532px;
    position: relative;
    padding-top: 27px;
    }

    Notice the 'width:532px;' just change the 532px to the percentage you would like, that should do it.

    :)