I know that many of those encoded footers in WP themes are encoded using base 64 algorithm.
If you have access to a host that supports PHP, you can easily decode the code and see how it looks like.
To do this, make a new PHP file like this:
|
PHP Code:
|
<?php
echo base64_decode('COPY AND PASTE THE YUCKY ENCODED CODE HERE');
?>
|
This will decode the code for you, assuming it's encoded using base 64 algorithm.
The other way is to use CSS and absolute positioning to put your copyright notice anywhere you want. I think you know enough CSS to do that but here is a short description.
You will have to wrap the whole page around a DIV which looks like this
|
HTML Code:
|
#wrapper {
/* Code */
position:relative;
}
#copyright-notice {
position:absolute;
top:-100px; /* Use this to move it down */
left:200px; /* Use this to move it left or right */
} |
I hope this makes sense