1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Is it easy

Discussion in 'PHP' started by redlandgames, Feb 10, 2012.

  1. #1
    I ahve a site that doesnt fit to webpage, its too thin where or how to edit so its wide as browser ...thanks
     
    redlandgames, Feb 10, 2012 IP
  2. xixilee

    xixilee Peon

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    use div class {width:100%}
     
    xixilee, Feb 11, 2012 IP
  3. redlandgames

    redlandgames Active Member

    Messages:
    909
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    80
    #3
    Where to do this in css? not sure thanks
     
    redlandgames, Feb 11, 2012 IP
  4. simoncrequer

    simoncrequer Peon

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Do it for every element that you want wider.
    e.g.
    #header, #content, #footer {
    width: 100%;
    }
    will make the elements with the ids header, content, and footer the width of the browser.

    Put this at the start of the CSS file.

     
    simoncrequer, Feb 12, 2012 IP
  5. ROOFIS

    ROOFIS Well-Known Member

    Messages:
    1,234
    Likes Received:
    30
    Best Answers:
    5
    Trophy Points:
    120
    #5
    in source find: <div class="main body" or <div id="main body" or something pertaining to this for your webpage's main text area.
    if it's hook is id in the css file look for
    #div main body {
    //css syntax
    }

    or if it's a class:

    .div main body {
    //css syntax
    }
     
    ROOFIS, Feb 12, 2012 IP