Ok so I was trying to remove the "Powered by Wordpress" at the bottom of my page, NOT your theme name... just the Wordpress. So, being the novice that I am, I messed with the functions file. Only took out this '<br />Powered by <a href="http://www.wordpress.org/">WordPress</a> ·
Well, then my website wouldn't come up. Says parse error. So I pasted it right back in where it was and was going to leave well enough alone. Now it won't work. What am I doing wrong? The current copy in the functions.php file that I messed with currently reads:
<?php
function footer_output($footer_content) {
$footer_content .= '<br />Powered by <a href="http://www.wordpress.org/">WordPress</a> · <a href="http://wordpress.bytesforall.com/" title="WP Themes">Atahualpa Theme</a> by <a href="http://www.bytesforall.com/" title="Custom WordPress Themes & Web Design">BytesForAll</a>';
return $footer_content;
}
What the heck could I have done? Please help!