What do you mean by 'got rid of' ?

You can't just remove whole defines in those files, as the template files are looking for those constants.

In header.php, this:

Line #21 : define('HEADER_SALES_TEXT', '<h1>Sales Message Goes Here</h1>');

should be edited to look like this:

Line #21 : define('HEADER_SALES_TEXT', '');

Notice the two single quotes are still there.