Theme Author: Lasantha .
Thursday, July 1, 2010
LK Magazine Blogger Template
Theme Author: Lasantha .
Starlite Diva designed by SimplyWP, Starlite Diva theme has been converted to blogger by GirlyBlogger.
Wednesday, June 30, 2010
Sparrow
It is another blogger template from birds category. simply download it and replace with your current code. you don’t need to change any code.
Our Blogger templates are Free. Please Save Our Back-links. It is required on any and all pages that use these templates.
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
Clearsky Template for Blogspot
do you remember our Kubrick Plus Green theme for wordpress? Now you can get blogger version of this template. it’s based on famous kubrick theme with clean style, fast loading, fixed width and customizable elements.
Download this Blogger template and Replace XML code with your current code. Ensure you back up your old template in case you decide to use it again.
Author: Finalsense
Demo: Online demo site
Download: Download clearsky template
Tuesday, June 29, 2010
iPad Template for Blogger
Do you like apple ipad? and would you like to display google adsense on your blog? That’s right, you find a template that optimized for adsense with 3 columns and designed like iPad device!
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
Moscow Blogger Template
It is not an architecture template or travel blog theme. Moscow is only a name for this purple and vector 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
Royal Template
Are you looking for a template with vector design like miniatures? You Found the Right Place. this theme has a fixed background and transparent foreground, tow columns, pages navbar, search box, rounded corners, title with shadow and customizable colors and fonts.
We Hope You Enjoy It!
Update: June 05 2010
Size: 17 KB
Designer: FinalSense
Live Demo: Demo of Theme
Download: Royal template
Crystal Heart
This is another blogger template of diana series. but it is darker and has the one column on sidebar and 3 columns in footer. also search box widget and pages navbar are enabled.
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
Futebol Blogger Theme edit post
If you are a football lover and want to write about it, then Template Futebol is the perfect theme for you. Its a 3 column template, that's an original creation of Templates Novo blogger
.Download
Waka Waka Time For Africa Blog Theme edit post
With the football World Cup fever rising across the world, here's a blogger template to note down your feelings, views, opinions about your favorite team and players. Waka Waka Time For Africa is a 2 column football theme
Designed by EZwpthemes and converted to blogger by Anshul.
This template has a steady background image of a football stadium with the 2 columns
Download
Monday, June 28, 2010
New blogger templates (XML) 3 columns
Step 1.Click on Template title (For eg. "Minima White")
Step 2.Goto Edit template section of your layout tab
Step 3. Upload it from the place where you saved it.
Important: Widgets
By installing any one of these templates, there are chances that all your widgets are lost(means all your customization is lost and only default template would be their).
It is recommended to backup your widgets. [Guide to backup widgets ]
A warning similar to the one given below will be displayed while installing them, Click Yes.
Update(s) 1/11/2008
Known issues :-
Son Of Moto Template
The bug's fixed and template updated, it should be green now.
Rounder's Template
The template experiences a sidebar drop in IE.Under Scanner
Header Image
It's been observed that the template isn't permitting images.the temporary solution is that you delete the 'Header' page element.Then re-add it using 'Add a Gadget' link in the layout section.
XML Errors
Instead of copy-pasting the code,try downloading it and then uploading.For downloading Right click on the template link you wish to download and select "Save Target As" in IE or "Save Link As" in Firefox.Then upload it from Edit HTML section of the Layout Tab.
Current templates available
Minima White
Minima Black
Minima Blue
Minima Ochre
Son of Moto
Ms.Moto
Dots
Dots Dark
TicTac
Tic Tac Blue
Denim
Denim Washed
Denim Light
897
565
Thisaway
Thisaway Blue
Rounders(01)
Rounders(02)
Rounders(03)
Sand Dollar
Herbert
Scribe
Harbor
Troubled installing them? just buzz me and I'll solve your problem
The Antagonist
- Tech Blogger Template
- This template for any kind of blogs
- Fixed width, No sidebar.
- 1 column, No sidebar
- Gray color, Gray background.
- This is amazing template with very cool design
Demo | Click here For Demo test |
Instructions Page | instructions page here |
Source And Designer | Author page |
Download | The Antagonist Blogger Template (10.4 KiB, 412 hits) |
Official time
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 | officialTime (6.9 KiB, 388 hits) |
Stripped
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 |
Download
template.php: Overriding other theme functions
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.
Sunday, June 27, 2010
Free Dynamic Flash Gallery Template
Free Dynamic Flash Gallery template is basically a dynamic Flash website with a Gallery section added in as an additional section with a navigation bar.
The gallery itself contains a set of images arranged in the order you prefer (rows of small pictures, previews of a larger image) which also has a Zoom button for a very large close-up view of the image.
Websites with a Dynamic Flash Gallery of this kind will definitely be a great help for photographers or artists who want to display their works on the Internet and want this to be done in the most elegant and attractive way.
Free Flash 8 Template
Note that you can play with this sample using Flash 8 version or later.
NOTE: HTML version (non-animated) is also included.
Intrepidity Silver
- 2 column, Right sidebar
- Elegant Blogger Templates
- Blue color, Gray Background.
- This template for any kind of blogs
- Fixed width, 1 sidebar.
- It’s nice template with top navigation menu, Search box raedy, RSS icon & twitter icons..
Demo | Click here For Demo test |
Instructions Page | instructions page here |
Source And Designer | Author page |
Download | Smash Blogger Template (13.2 KiB, 111 hits) |