Is there any way to check that I am using the right file? I mean, I am pretty sure I am. Like I said in my original post, the path for this file is:
/includes/languages/english/responsible/header.php
And if I change the
Code:
define('HEADER_SALES_TEXT', 'Tagline');
to
Code:
define('HEADER_SALES_TEXT', 'Taglinesssss');
it changes on my website, and if I change
Code:
define('HEADER_LOGO_IMAGE', 'logo.gif');
to
Code:
define('HEADER_LOGO_IMAGE', 'logos.gif');
it breaks my logo (since there is no logos.gif file in my images directory).
But if, in that same header.php file, I change
Code:
define('HEADER_LOGO_WIDTH', '150px');
define('HEADER_LOGO_HEIGHT', '200px');
nothing happens on the page itself, no matter what dimensions I use, the logo is still using the dimensions of the logo.gif file.
Like I said I can manually resize logo.gif, I am just curios as to why changing the dimensions in the header.php file aren't affecting anything.