Thanks for your response guys.
I actually made the controls show up by parsing the HTML file at the very end, with everything included in it.
Unfortunately I am experiencing some CSS file issues. As I mentioned, I am a beginner and it's though for me to find out what is the reason of the problems.
No matter what I do, I can't move the privacy statement and terms of use (1.), the copyright (2.), and login elements (3.) around the page.
This is how it looks like:
http://img214.imageshack.us/img214/35...
And this is some of the corresponding CSS code (no matter what I put there, the position of the elements stays the same - only removing hash symbols will put the elements in the header or footer area, but in a wrong position that still cannot be changed)
#login_style {
position: absolute;
bottom: 10px;
right: 10px;
}
#terms_style{
position: absolute;
bottom: 10px;
left: 10px;
display:inline-block;
}
#copy_style{
position: absolute;
bottom: 10px;
right: 10px;
display:inline-block;
}
I played around with it for several hours, trying a whole variety of options. Does anyone have any suggestions by any chance?
Thanks in advance.