Hi,
have a problem likes it, Please Fix here
Guid HTML Or
Here
Or Here is our suggestion, create new block file: templates\t3_bs3_blank\tpls\blocks\slideshow.php and add the following code:
<?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;
?>
<div id="slideshow" class="container t3-mainbody">
<div class="col-md-8 col-xs-12">
<jdoc:include type="modules" name="<?php $this->_p('slideshow') ?>" style="T3Xhtml"/>
</div>
<div class="col-md-4 col-xs-12">
<jdoc:include type="modules" name="<?php $this->_p('sidebar') ?>" style="T3Xhtml"/>
</div>
</div>
Now open the layout file and load the slideshow block.
The slideshow block has 2 positions: slideshow and sidebar, the slideshow width is double the sidebar width. You can assign modules to slideshow and sidebar to build the same block you mentioned. For the height, you have to control it by the modules you assign to the position as we can not fix the height because it relates to responsiveness.
Regards.