Hi Preveo,
You can open the index.php file and enable error reporting by adding the following line at the top of the file after the PHP start tag:
error_reporting(E_ALL);
Also enable developer mode by replacing these lines:
if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
Mage::setIsDeveloperMode(true);
}
with the below lines:
//if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
Mage::setIsDeveloperMode(true);
//}
This can help you show if there are any error messages.
Also make sure if theme is being properly assigned.