Adding my own footer?
ntuyelik
New
I am trying to add my own footer on my vanilla installation.
- First I added
- Then added
- Finally I created a footer.css file in the same folder of default.master.php including below code but it does not work, which fault do I have? ;
Here is my site for your code control : http://www.herkesuzman.com
- First I added
<link rel="stylesheet" type="text/css" href="footer.css" media="screen" /> after <head> in default.master.php.- Then added
<div id="footer"></div> after </body> in default.master.php.- Finally I created a footer.css file in the same folder of default.master.php including below code but it does not work, which fault do I have? ;
#footer {
position:absolute;
bottom:0;
width:100%;
height:60px;
background:#6cf;
}
Here is my site for your code control : http://www.herkesuzman.com
Tagged:
0
Comments
</body>. You'll want your footer inside that.<div id="footer"></div>before</body>but nothing changes<link rel="stylesheet" type="text/css" href="footer.css" media="screen" />is this wrong? What do you suggest for fixing?