I love all the features and power that Drupal gives me, but for my taste, I find that some of the Joomla templates are far more attractive than those available in Drupal. I would like to port some of them to Drupal, but I see some basic problems.
<?php
function phptemplate.function1 () {
$var = 'one'; // at this point var = one
$output = function2();
$var .= $var; // at this point var should be onetwo but I couldn't get it!
$output = $output.$var;
return $output;
}
function phptemplate.function2 () {
$var .= 'two'
$output = 'something';
return $output;
}
How can I do it? I tried declaring $var as global in function1 without success.
I like SEO Position theme, it look great in 800x600 resolution but I need to expand to 1024*768. Reduce the lateral gray columns and expand the main and right content columns to fit in the screen ( I dont like center as default).