Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
copyright statement too high
my site is at http://www.sglifeless.com
if you sign up and check out the account page, you will find that the copyright statement is too high up, and the account details stack up on it.
kinda of ugly to see it.
anyone can help to solve it by bring the copyright statement further down?
thanks.
0
This discussion has been closed.
Comments
1. Wait till more discussions have been made, this will post the copyright notice down to the bottom.
2. With some help from Javascript to push the copyright notice to the bottom of the user's browser window. From what I remember I don't think it's possible with CSS alone. You could look at the following article to provide some more insight onto how to do it.
Hope that helps a little.
EDIT: Sorry, my mistake. I miss-read what you meant. In this case, like itchy says it has something to do with the theme your using.
EDIT: I looked at your stylesheet, and I haven't tested but I notice you have some negative margins. A negative margin will cause an element, say a header, to be pull up/across the page. For example margin-top: -10px; will move that element up ten pixels, and cover another element. This might be causing the copyright to go too high. Just not sure which value in the stylesheet it is. Possibly .Account small?
Change the following...
.RoleHistory blockquote { margin: 0; padding: 6px; border-bottom: 1px solid #ccc; }
To...
.RoleHistory blockquote { margin-right: 0; /* <--- */ margin-left: 0; /* <--- */ padding: 6px; border-bottom: 1px solid #ccc; }
.Discovery blockquote, .IpHistory blockquote, .RoleHistory blockquote { margin: 0px; padding: 6px; border-bottom: 1px solid #ccc; } .RoleHistory blockquote { color: #999; }
Make sure the margin: 0; is changed to margin-right: 0; margin-left: 0; other than that I'm not sure what to suggest. You could add margin-bottom: 100px; that should have the same effect as adding a margin to the footer.
Sorry all my attempts seem to have failed.