Teline has 2 option is font size and width screen . In the top we have font size tool , if you want add screen tool you can do following steps below :
1. Open ja_templatetools_1.5.php file in templatesja_teline_ii folder , find following code line at about line 12:
var $_ja_screen_sizes = null;
change to :
var $_ja_screen_sizes = array ('wide', 'auto');
2. In ja_templatetools_1.5.php file , find following code line at about line 79 :
function genToolMenu($ja_tools, $imgext = 'gif'){ ?>
change to :
function genToolMenu($ja_tools, $imgext = 'gif'){
//show screen tools
$i = 0;
foreach ($this->_ja_screen_sizes as $ja_screen_size) {
$i++;
echo "
<img style="cursor: pointer;" title="$ja_screen_size screen" src="".$this->templateurl()."/images/".$this->getParam(JA_TOOL_COLOR)."/user-screen".$i. ( ($this->getParam(JA_TOOL_SCREEN) == $ja_screen_size) ? "-hilite" : "" ).".".$imgext."" alt="$ja_screen_size screen resolution" id="ja-tool-$ja_screen_size" onclick="switchTool('".$this->template."_".JA_TOOL_SCREEN."','$ja_screen_size');return false;" />
";
}
?>