PDA

View Full Version : How to ... Text above my Footer?


Tejanos
Oct-07-2007, 03:40 PM
Hi!

I want to add some copyright text above my footer, how to do?

http://tejanos.smugmug.com/

Regards,

Mark Jones

Allen
Oct-07-2007, 04:09 PM
Hi!

I want to add some copyright text above my footer, how to do?

http://tejanos.smugmug.com/

Regards,

Mark Jones
Add this to your footer and change to your text.

<div id="myFooter">I want to add some copyright text above my footer</div>

... and add this to your CSS to position and format it. Added in some font
things you can control, remove or change what you don't want. Many
options available.

#myFooter {
text-align: center;
color: 696F4C;
font-family: Comic Sans MS, verdana;
font-size: 110%;
}

Tejanos
Oct-07-2007, 04:22 PM
Hi!

Thanks!

Regards,

Mark Jones

Add this to your footer and change to your text.

<div id="myFooter">I want to add some copyright text above my footer</div>

... and add this to your CSS to position and format it. Added in some font
things you can control, remove or change what you don't want. Many
options available.

#myFooter {
text-align: center;
color: 696F4C;
font-family: Comic Sans MS, verdana;
font-size: 110%;
}

Tejanos
Oct-07-2007, 04:31 PM
Hi!

One more question ...

How to make this appear on all pages?

I got it on my home page, though it does not appear on the other pages ...

Regards,

Mark Jones


Hi!

Thanks!

Regards,

Mark Jones

Allen
Oct-07-2007, 04:38 PM
Hi!

One more question ...

How to make this appear on all pages?

I got it on my home page, though it does not appear on the other pages ...

Regards,

Mark Jones
See it on all pages here with Firefox.:scratch

btw, if it's too long and you want it on two lines add these.

#myFooter {
text-align: center;
color: 696F4C;
font-family: verdana;
font-size: 80%;
width: 420px;
margin: 0 auto;
}