theme

themeimage.jpg

To theme cck imagefield with imagecache, make sure imagecache is working. Replace 'featuredsmall' with the imagecache name. Copy the imagefield name and adjust code below.

color.jpg

There are few ways to select color in input form field. Drupal have it's own color picker build in. The draw back with this that it not really user friendly and too technical. Other solution is to use javascrip pop-up menu, but it will not work in all browser.

Here it is :

(node.tpl.php)

To create customize shorter teaser, use this snippet

<?php print $teaser = substr($node->content['body']['#value'], 0, 220) ?>

the "220" is number of character before it cut the teaser.

Adsense limit 3 ads per page. If i insert adsense ads in node.tpl.php, it well repeat the ads 3 times. Because of the node load first before the bottom block, my adsense in bottom block no showing. To solve this, add this snippet inside node.tpl.php. It nice also to separate teaser and full page theme and only insert this snippet inside teaser section only

<?php
if ($id == 1 && $is_front) {
print "...banner here...";
}
?>