
Sunday, July 22, 2012
Widget customization - how to style each widget differently?
we'll learn how to tweak and style each widget (gadget) differently! Meaning:
► each of your widgets (Labels, Archive, Links, custom widget) can have it's own looks (color, font, borders, images....anything!)► remember that WIDGET is the same thing as GADGET
There are a few simple steps you'll have to take:
► choose which widget you'd like to style, and identify it in Blogger HTML code► add some CSS style in the code that will spice up our widget► don't lose your marbles (be patient and creative)
Choosing and Identifying
Each widget added in Blogger Layout has a unique ID. We will use this ID to apply some style to our widget. So, our job is to dive into the Blogger HTML code, and locate these ID's. Let's go. From your Dashboard, go to:LAYOUT ► EDIT HTML ► and scroll all the...
Saturday, July 14, 2012
കമ്പ്യൂട്ടര് ക്വിസ്,
1. Which of the following are the major components in a computera) CPU, CD_Rom, Mouse, Keyboardb) Memory, Video card, Monitorc) Modem, Printer, Screend) CPU, Memory, System bus, Input H/w, Output H/w2. How the information is transformed from one component to another component in a system?a) System bus b) Memoryc) Keyboard d) Monitor3. MS-Access, MS-Foxpro is the examples of what type of software?a) Spread Sheetb) Presentation Softwarec) Database Managementd) None of the above4. Windows operating system havea) Graphical User Interfaceb) Command based Interfacec) Both a and b d) None of the above5. ___ Allows more data to be stored on a disk?a) Data Compressionb) Disk Defragmentationc) Both a and b d) None of the above6. A text-based language with codes or tags used for developing web pages...
Saturday, July 7, 2012
Three Columns Template (I)

The popular templates – Minima, Rounders, Denim, Dots, Scribe and Sand Dollar. Here give you a step by step guide to insert a third column into the templates.
If you are not sure what your template is, under Template -> Edit HTML, look for the “Blogger Template Style” Name. If it says “Thisaway”, you can follow this guide to customize your template.
For other templates, please refer to our articles and guides on:-
1. Three Columns Denim Template;
2. Three Columns Dots Template;
3. Three Columns Minima Template;
4. Three Columns Rounders Template;
5. Three Columns Rounders 2 Template;
6. Three Columns Rounders 3 Template;
7. Three...
Tuesday, July 3, 2012
How to display widgets only on home page of blogger
It mean widget display only on homepage and hide from post,static and archive page.Simply enclose the code inside HTML/JavaScript widget between these lines,
<b:if cond='data:blog.url == data:blog.homepageUrl'>
WIDGET CODE GOES HERE
</b:if>
where WIDGET CODE GOES HERE is the code of the widget you want to show or hide.
2.How to display widgets only on post pages of bloggerIt mean widget display only on post pages and hide from homepage,static and archive page.Simply enclose the code inside HTML/JavaScript widget between these lines,
<b:if cond='data:blog.pageType == "item"'>
WIDGET CODE GOES HERE
</b:if>
3.How to display widgets only on static pages of blogger.It mean widget display only on static pages and hide from homepage,post and archive pages.Simply...
How to Show blogger widget on homepage only?
Some questions that are most asked are : How to Show blogger widget on homepage only? How can I show widgets only on sub pages? How can I hide widgets on Static pages? How to show widgets on selected pages in blogger? To answer all these questions today's tutorial will be a delicious one. Its really important to control widget Display in Blogger. some widgets are meant for homepage only while some makes sense when you show it at your Contact Pages, About Me pages or static pages. So how do we actually do this. The trick is really simple. You just need to enclose your widgets in few pieces of codes. So lets jump straight on how to manage widgets on different pages in blogger.
Its often the HTML/JavaScript widget that is widely used for adding your customized widgets to Blogger...
How To Controll Widgets in blogger ?
This is the Procedure applied to Blogger’s official widgets like About Me, Archives, Poll etc. For controlling that widgets do this,
Go To Blogger >> Design (or) Template(for new interface) >> Edit HTML
Backup your template
Check the Expand Widgets Templates Box
Search for the title of the widget you want to control
The code for the widget will look something similar to this one,
<b:widget id='HTML' locked='false' title='WIDGET-TITLE-HERE' type='Profile'>
<b:includable id='main'>
WIDGET CODE GOES HERE
</b:includable> </b:widget>On finding the title in place of WIDGET-TITLE-HERE you will find two similar codes like those I have shown in blueYou just need to add the Controlling codes in the following manner. For example if...
20 Useful CSS Tips for blogging
In the old days, we depend a lot of on developers and programmers to help update the website, even when it’s just a minor one. Thanks to the CSS and it’s flexibility, styles can be extract independently away from the codes. Now, with some basic understanding of CSS, even a novice can easily change the style of a website.
Whether you are interested in picking up CSS to create your own website, or merely to tweak your blog’s look and feel a little – it’s always good to start with the fundamentals to gain a stronger foundation. Let’s take a look at some CSS Tips we thought might be useful for beginners. Full list after jump.
Use reset.cssWhen...
blogging : Start with HTML
Start with a titleEvery HTML document needs a title. Here is what you need to type:
<title>My first HTML document</title>Change the text from "My first HTML document" to suit your own needs. The title text is preceded by the start tag <title> and ends with the matching end tag </title>. The title should be placed at the beginning of your document.
To try this out, type the above into a text editor and save the file as "test.html", then view the file in a web browser. If the file extension is ".html" or ".htm" then the browser will recognize it as HTML. Most browsers show the title in the window caption bar. With just a title, the browser will show a blank page. Don't worry. The next section will show how to add displayable content.
Add headings and paragraphsIf you...
blogger tricks - Use the style element
This is a short guide to styling your Web pages. It will show you how to use W3C's Cascading Style Sheets language (CSS) as well as alternatives using HTML itself. The route will steer you clear of most of the problems caused by differences between different brands and versions of browsers.
For style sheets to work, it is important that your markup be free of errors. A convenient way to automatically fix markup errors is to use the HTML Tidy utility. This also tidies the markup making it easier to read and easier to edit. I recommend you regularly run Tidy over any markup you are editing. Tidy is very effective at cleaning up markup created...