Quote Originally Posted by clydejones View Post
Just to double check:

#centercolumnFooter {
margin: 0;
padding: 0;
}

Make sure this is in both of your stylesheets.
includes/templates/trublu/css/stylesheet.css and stylesheet_new.css
----------

2. in includes/languages/english/extra_definitions/trublu
create a new file centercolumn_footer_defines.php

define ('CENTERCOLUMN_FOOTER_TEXT','You can place any text you want here');

3. open includes/templates/trublu/templates/tpl_index_default.php

scroll to the bottom of the file and just above the last </div>

insert the following statement:

<div id="centercolumnFooter"><?php echo CENTERCOLUMN_FOOTER_TEXT; ?> </div>
I've done all that. Checked, and rechecked to make sure all were where they should be. Also, I asked if the div statement in centercolumn_footer_defines.php should be inside <?php ?>

If I don't wrap the statement in php, then the entire statement (just the statement) shows up at the very top of the page. By wrapping it in php, it doesn't show up at the very top of the page, but, it doesn't show up at all.