carlucci I would like to have the layout sources of Ja TelineV: css and php.
Hi Carlucci
You already have them
1) All styles for all pages are defined in this file /templates/ja_Teline_V/css/template.css
2) php files for layouts are different for different layouts , they have a hierarchical structure .
let's take as example the magazine-home layout which is used for the main page of the website
You can find this layout php file in this folder /templates/ja_Teline_V/tpls/magazine-home.php and it has inside a series of blocks definitions
<?php $this->loadBlock('topnav') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('mainbody-full') ?>
<?php $this->loadBlock('footer') ?>
each one of this block has a separate php file in this folder /templates/ja_Teline_V/tpls/blocks
So you have access to all php files and all blocks php files to customize your layout adding removing or change block properties via php custom code or modify it via css finding appropriate code inside template.css file as mentioned above.
If you will follow T3 Documentation HERE dedicated to layouts and block modifications then you can change everything you want on the template.
Hope it helps.
Regards