Hi everyone,
Me again, been a while since I've been here, but I'm back again needing help with a simple thing.
I've searched for help on creating a footer, but all the help I've found, was absolutely nothing like what I was looking for.
Could anyone help me with the very simple issue of creating a footer?
I'm trying to create it on my index page (and all of the others, once I figure out HOW :) )
Here is the page:
I thought I knew, but I guess I don't. The code I tried last, to style the footer (and by footer I mean both copywrite info, and the actual footer. The copywrite will be on my sidebar, and the footer on the regular part of the page, if anyone understand that) is this:
[HTML]
/*Bottom container for copywrite and footer*/
.bottom {
position: normal;
bottom: 0px;
overflow: auto;
}
/*Copywrite info*/
.copywrite {
font-size: 75%;
font-family: Arial;
width: 155px;
float: left;
}
/*Footer*/
.footer {
font-weight: bold;
font-size: 50%;
font-family: Arial;
min-width: 600px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding: 31px;
}[/HTML]
I want both footer and copywrite info to be at the bottom, so I put them in box of their own. But of course, that doesn't solve the problem of my footer ignoring my page and going to the top instead of bottom.
I really appreciate the help in this simple matter, and appologize for my ignorance. Also, I know I have a few problems with my page, I'm currently updating and fixing things so they'll be fixed after a while, but right now I'm just focusing on the big chunks that are more needed.
Thanks again!
~Michael
Me again, been a while since I've been here, but I'm back again needing help with a simple thing.
I've searched for help on creating a footer, but all the help I've found, was absolutely nothing like what I was looking for.
Could anyone help me with the very simple issue of creating a footer?
I'm trying to create it on my index page (and all of the others, once I figure out HOW :) )
Here is the page:
I thought I knew, but I guess I don't. The code I tried last, to style the footer (and by footer I mean both copywrite info, and the actual footer. The copywrite will be on my sidebar, and the footer on the regular part of the page, if anyone understand that) is this:
[HTML]
/*Bottom container for copywrite and footer*/
.bottom {
position: normal;
bottom: 0px;
overflow: auto;
}
/*Copywrite info*/
.copywrite {
font-size: 75%;
font-family: Arial;
width: 155px;
float: left;
}
/*Footer*/
.footer {
font-weight: bold;
font-size: 50%;
font-family: Arial;
min-width: 600px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding: 31px;
}[/HTML]
I want both footer and copywrite info to be at the bottom, so I put them in box of their own. But of course, that doesn't solve the problem of my footer ignoring my page and going to the top instead of bottom.
I really appreciate the help in this simple matter, and appologize for my ignorance. Also, I know I have a few problems with my page, I'm currently updating and fixing things so they'll be fixed after a while, but right now I'm just focusing on the big chunks that are more needed.
Thanks again!
~Michael
Comment