Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
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?