Hi Tobias,
Thanks for sending all required info.
I fixed your problem, now the layout is now 100% full screen. In fact I can fix it very simple by adding css rule directly to the <body> of the default.php but it's hard for you to customize style next time so I fix it as below that can help you customize style of template easier.
#1: create custom.css file in the "/templates/t3_bs3_blank/css" folder then add the following css rule:
body {
margin: 0;
{
#2: create header-1.php file in the "/templates/t3_bs3_blank/tpls/blocks" folder. The file is to load the custom.css file.
<?php
/**
* @package T3 Blank
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
?>
<?php
// CUSTOM CSS
if (is_file(T3_TEMPLATE_PATH . '/css/custom.css')) {
$this->addStyleSheet(T3_TEMPLATE_URL . '/css/custom.css');
}
?>
#3: Load the header-1 to the default.php file.
<?php $this->loadBlock('header-1') ?>
<?php $this->loadBlock('spotlight-1') ?>
Next time, if you want to customize style of the template, you can add css rules to the custom.css file.
Gardner.