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.

problem with css

Discussion in 'CSS' started by itsmani1, Jan 23, 2006.

  1. #1
    itsmani1, Jan 23, 2006 IP
  2. tommie

    tommie Guest

    Messages:
    114
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    youre using alot of &nbsp; and <br>, could you post the css you are using, especially the footer divs?
     
    tommie, Jan 24, 2006 IP
  3. stuw

    stuw Peon

    Messages:
    702
    Likes Received:
    44
    Best Answers:
    0
    Trophy Points:
    0
    #3
    It looks like the wrappre for
    "Stage 3 Productions
    27500 Donald Ct.
    Warren MI 48092
    Ph: 888-330-5179
    Fax: 586-978-9085
    "

    id=contact, class=footer

    if you install this extension for firefox : http://chrispederick.com/work/webdeveloper/
    You can do things like outline all the css elements and add the names to them on screen - which makes it dead obvious whats going on:

    [​IMG]
     
    stuw, Jan 24, 2006 IP
  4. karmik

    karmik Peon

    Messages:
    329
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Here is the solution

    Change this from your css file and it will be alright

    #contact{
    text-align: left;
    width: 90%; (instead of 100%)
    border: 0px;
    margin: auto auto 35px;
    vertical-align: bottom;
    bottom: 0px;
    position: absolute;
    left: 89px;
    top: auto;
    color: #cacaca;
    font-size: 9px;
    font-weight: normal;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    }
     
    karmik, Jan 24, 2006 IP
  5. kurtsfar

    kurtsfar Guest

    Messages:
    37
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Put this in your CSS file's style sheet:

    body {
    width:100%;
    margin:0;padding:0
    }

    and maybe this to prevent some issues with IE

    *html, body {
    margin:0;padding:0
    }

    You can use this as a CSS 2 properties reference:
    CSS 2 Properties and their Values

    Maybe I missed something...I'm tired.., but I couldn't find a body selector in
    your CSS file. Also, always set the color and background of the body.
     
    kurtsfar, Jan 24, 2006 IP