
Theme Author: Lasantha .
Please let me know your opinions of this template by leaving your comments below.
Template name: Sparrow
Size: 37KB
Type: Blogger Template (XML)
2 Column, Fixed Width, Editable
Best quality, Tested on IE, Firefox and Chrome
Demo
Download: Sparrow Template
Designer/Publisher: Finalsense
You can download, extract and upload to your blogspot dashboard and Enjoy your new blog design.
Update: search box, top sidebar, search bug fixed
Tested on: Firefox 2.6, Google Chrome, Internet Explorer 8
Type: XML (Blogspot)
Size: about 20KB
3 Columns, fixed width,
Demo: Top ipad Reviews
Download: iPad Template
This design includes fixed background, rounded corners, transparent layouts, two columns with fixed width, search box ready widget, a page menu List. Please read the help file before install new template. If you use this template or offer this for download from your own site, please include a link back to us.
Author: FinalSense
Demo: Moscow Template
Download: Moscow Template for blogger
We Hope You Enjoy It!
Update: June 05 2010
Size: 17 KB
Designer: FinalSense
Live Demo: Demo of Theme
Download: Royal template
After download and extract it, you can copy and paste xml contents to your blogger > layout > Edit HTML.
Please feel free to let us know what you think of this theme by leaving your comments below.
Designer: Finalsense
Demo: The Crystal Heart
Download: The Crystal Heart
Demo | Click here For Demo test |
Instructions Page | instructions page here |
Source And Designer | Author page |
Download |
|
1 column, 2 bottom sidebars. white orange banner. fixed width, dark gray background.
Business blogger templates.
Demo | Click here For Demo test |
Instructions Page | instructions page here |
Source And Designer | By AllBlogToolsBlogger templates |
Download |
|
Instructions: | How to install a Blogger template |
Template author: | Quiterandom |
Designer: | Nathan Rice |
Properties: | 1 Column, Adapted from Wordpress, Black, Fixed width, Magazine, Minimalist, White |
Categories: | Neutral |
If you want to override a theme function not included in the basic list (block, box, comment, node, page), you need to tell PHPTemplate about it.
To do this, you need to create a template.php
file in your theme's directory. This file must start with a PHP opening tag but the close tag is not needed and it is recommended that you omit it. Also included in the file are stubs for the theme overrides. These stubs instruct the engine what template file to use and which variables to pass to it.
First, you need to locate the appropriate theme function to override. You can find a list of these in the API documentation. We will use theme_item_list()
as an example.
theme_item_list()
looks like this:Now you need to place a stub in your theme'sfunction theme_item_list($items = array(), $title = NULL) {
$output = '';
if (isset($title)) {
$output .= ''. $title .'
';
}
?>
template.php
, like this:/**
* Catch the theme_item_list function, and redirect through the template api
*/
function phptemplate_item_list($items = array(), $title = NULL) {
// Pass to phptemplate, including translating the parameters to an associative array.
// The element names are the names that the variables
// will be assigned within your template.
return _phptemplate_callback('item_list', array('items' => $items, 'title' => $title));
}
?>We replaced the word
Now, you can create a filetheme
in the function name withphptemplate
and used a call to_phptemplate_callback()
to pass the parameters ($items
and$title
) to PHPTemplate.item_list.tpl.php
file in your theme's directory, which will be used to theme item lists. Start by putting in the code from the originaltheme_item_list()
. Do not wrap this code into a function, write inline, e.g.= '
';
if (isset($title)) {
$output .= ''. $title .'
';
}
?>Note that you will need to visit [ Administer -> Site building -> Themes ] for PHPTemplate to refresh its cache and recognize the new file. Beginning with version 4.6, this is not necessary anymore.
In addition to Drupal's standard theme functions (as shown in the API) you can also override any Drupal form using a theme function. For example, given a Core form that is created from a form builder function, the form_id can be used to override. A worked example makes this clearer.
Demo | Click here For Demo test |
Instructions Page | instructions page here |
Source And Designer | Author page |
Download |
|