Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As you see in the demo my footer bar is not the place it has to be. I can't figure out why the footer isn't settle after the content div. Footer has to be just after the article. I was trying to find spesific keywords to search on Google but i couldn't.

Also, i can not apply style to about page. I think this is related with first problem.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" lang="en"/>
<title>Title</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="style.css" />  
</head>
<body> 
<div id="containerANA">

    <div id="header">
            <div class="headerAlt">

            </div>
    </div>
     <div class="temizle"></div>
<!--End of the header.php-->
<div id="content">
    <div class="findler">
    <div class="find"><a href="#" title="Find">Find</a></div>
        <p>
                                            <a href="#">insaf sahipleri</a>
                                                            <a href="#">BEN VE OLRİC</a>
                                                            <a href="#">insaf sahipleri</a>
                                                            <a href="#">BEN VE OLRİC</a>
                                                            <a href="#">insaf sahipleri</a>
         </p>
    </div>
</div>
<div class="temizle"></div> 
    <!--Begining of the footer.php-->
    <div id="footer">
        <ul>
            <li><a href="http://www.olmasigereken.com/demo1/?view=about" title="about us">about us</a></li>
            <li><a href="http://www.olmasigereken.com/demo1/?view=terms" title="terms of use">terms of use</a></li>
            <li><a href="http://www.olmasigereken.com/demo1/?view=contact" title="contact">contact</a></li>
        </ul>
    </div>
</div>  
</body>
</html>

style.css:

    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed, 
    figure, figcaption, footer, header, hgroup, 
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure, 
    footer, header, hgroup, menu, nav, section {
        display: block;
    }
    body {
        line-height: 1;
        background:#000000;
        color:#fff;
    }
    ol, ul {
        list-style: none;
    }
    blockquote, q {
        quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }
    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    .temizle{clear:both;}

    #containerANA{
    width:%100px;
    height:auto;
    margin: 0 auto;
    font:13px arial, helvetica, Geneva, sans-serif;
    margin-left:15px;
    margin-right:15px;
}


.temizle{
    clear:both;
}

#header{
    height:212px;
    width:%100px;
    margin:0 auto;
    border-bottom:2px solid #66675e;
}


.headerAlt{
    height:55px;
    width:490px;
    margin:0 auto;
    margin-top:10px;
    float:center;
}




#content{
    width:%100px;
    margin-top:35px;
}


.findler{

    height:80px;
    width:%100px;

}

.find{
    background:url(img/find.jpg) no-repeat;
    width:87px;
    height:54px;
    margin-top:26px;
    margin-left:610px;

}

.find a{
    width:87px;
    height:54px;
    display:block;
    text-indent:-9999px;
}

#content p{
  position: relative;
  margin-left:auto;
  margin-right:auto;
  top:0px;
  display: block;
  padding: 5px;    
  color: #769B4E;
  font-size:18px; 
  text-align:justify;   
  border: 0px solid #769B4E;
  margin-top: 10px;
  margin-bottom: 10px;
}

#content p a{
    color:#ccc;
    text-decoration:none;
}

#content p a:hover{
    background:#e5da5f;
    color:#000;
}

#footer{
    margin-top:50px;
    margin-bottom:20px;
}

#footer ul{
    margin-left:35px;
}
#footer ul li{
    display:inline;
    margin-right:30px;
    font-family:Verdana, Geneva, sans-serif;
    font-size:11px;
}

#footer ul li a{
    text-decoration:none;
    color:#FF0000;
}

#footer ul li a:hover{
    background:#e5da5f;
    color:#000;
}
share|improve this question
2  
please post your css – toxicate20 Nov 14 '12 at 9:20
Are you looking for something like this? ryanfait.com/sticky-footer – Per Salbark Nov 14 '12 at 9:23
2  
You are using height: %100px; width: %100px; make sure you fix all this dirty things – Mr. Alien Nov 14 '12 at 9:24

6 Answers

up vote 2 down vote accepted

You have defined in CSS that

.find {
  background: url(img/find.jpg) no-repeat;
  width: 87px;
  height: 54px;
  margin-top: 26px;
  margin-left: 610px;
}

.findler {
  height: 80px;
  width: %100px;
}

They make the #content only 80px in height, but the content inside takes more space than provided, caused content overflow.

So the .footer is positioned below the #content, but visually under the overflow content in #content.

Just remove the heights from your CSS rules, let the browser decide what the height should be.

share|improve this answer
Thanks. I put the footer to place where it belongs. But still i can't apply style to about page. – You Can Do It Nov 14 '12 at 10:14
what do you mean? – xiaoyi Nov 14 '12 at 10:16
I posted a new message to end of the page. For example i want to apply <strong> tags to writing as on message bottom but i couldn't. – You Can Do It Nov 14 '12 at 10:23
You mean it's not appears in bold? Because you used reset stylesheet to remove all the predefined styles. – xiaoyi Nov 14 '12 at 10:55

Remove height value from .findler and make it auto.

Since there is height fixed for your content div, the content is going beyond the div so you are seeing the footer issue.

.findler {
height: auto;
width: 100%;
}
share|improve this answer

Add clear:both; to the css of your footer.

If it's still not working, add <div class="clearer"></div> just before your footer in the html. And declare this in css .clearer{clear:both;}

share|improve this answer

.... HI now add this

min-height:80px; in your .findler class

as like this

.findler {
height:80;  // remove this line
    min-height: 80px;  //  add this line
}
share|improve this answer

Thanks to all. I put the footer to place it has to go. But still i can't apply style to about page

<h3>Hello! </h3>
<h2><strong>I am ABOUT.PHP</strong></h2>

<p>
bla bla bla bla
</p>
share|improve this answer

http://www.cssstickyfooter.com/ - This may help, they explain footer positioning quite well

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.