Horizontal Nav

Saturday, 16 August 2014

Hiding "Subscribe to Post (Atom)" at the bottom of your blog

By default, Blogger puts the "Subscribe to: Posts (Atom)" item on at the bottom of every screen of posts in blogs with Layout or Designer templates.

So you may want to remove it from your blog and replace it with a nicer-looking RSS-subscription button.

How to remove "Subscribe to: Posts (Atom)" from your blog:

  1. Edit your template
  2. Find this code in your template:

<!-- feed links-->
<b:include name='feedLinks'/>

3        Replace it with this code:

<!-- feed links
<b:include name='feedLinks'/>   -->

What you have done is to comment-out the code:  the "-->" is the "end of comment" command in HTML.

This approach is better than "hiding" the link by making it the same colour as your background (which could be seen as trying to hide things from the search-engines).  It won't have any negative effect on your blog's performance, and you can undo it very easily by moving the end-of-comment text back again.

Saturday, 9 August 2014

How Big is a Project in Your Organization?

Projects are not routine. They are managed differently than routine operational work. Projects have a start and end-date. There is a point in time when the work did not exist (before the project), when it does exist (the project), and when it does not exist again (after the project). This is the key determinant of whether a piece of work is a project.
Other characteristics of a project include:
·  All projects are unique. They may be similar to prior projects but they are unique in terms of timeframes, resources, business environment, etc.
·  Projects result in the creation of one or more deliverables.
·  Projects have assigned resources - either full-time, part-time or both. This is reflected in a true budget or an implicit budget based on allocated resources.
·  Projects have a defined scope of work.
That being said, you need to be practical. In theory, projects can be one hour, 100 hours or 10,000 hours (or more). So, you must recognize that, although the creation of a small deliverable is a project, it does not need the structure and discipline of a much larger project. For a one-hour project, you 'just do it'. Any planning, analysis and design is all done in your head. A 100 hour project probably has too much work to plan and manage all in your head. For instance, you need to start defining the work and building a simple schedule. A 10,000 hour project needs full project management discipline.
Our model for scaling projects is to use a scale of small, medium and large. We use effort hours as the key criteria for sizing projects. This seems to be a true complexity factor. Duration is not a good factor since it varies depending upon the resources committed. For example, a 100 hour project could take 20 weeks if you can only spend five hours a week. The basic scale is as follows.
·  Small Project - less than 250 effort hours
·  Medium project - between 251 and 2500 effort hours
·  Large project - over 2500 effort hours
In your company, the effort hours for categorizing projects may be different. However, in general, smaller projects need very little rigor and structure. Larger projects need more structure.
Summary. The definition of a project covers work that could be as little as a minute. However, no organization is going to track one minute projects, or one hour projects. Even though these are all technically projects, your organization should have a minimum threshold that you use before you consider the work to be an official project. Our threshold is 250 hours. What is yours? 
..................................................
Project templates. Define and manage scope on your project - plus much more.Get your project started quickly with a pre-built set of great project management templates. Buy now and use immediately.

Wednesday, 6 August 2014

How to add CSS Template in ASP.Net Master Page

In this article, I shall teach you how to add CSS template in Asp.net Master Page. CSS Template makes our website very attractive. So let’s go to learn our step by step tutorial.

Step 1: Start a Microsoft Visual Studio 2010 Professional.


Step 2: Create a New website project. 


Step 3: Download CSS Template

Step4: Extract the CSS Template Zip Folder. Template files look like this.


Step 5: Select the template script folder and copy the script files like this.


Step 6: Now go to our website project . In solution explorer right-click on script folder and paste the script files in it. Look the view below.


Step 7: Select the CSS Styles files from template style folder and copied all files. Look the view below.


Step 8: Again go to the website project. In solution explorer right-click on style folder and paste the CSS files in it.


Step 9: Copy the image folder from the template folder. In solution explorer right-click on website project name and paste the image folder in it.


Step 10: Right Click on website project name>Add New item.

Step 11: Select master page from the menu. And write the name of master page. And click on add button. A master page is added in your project.


Step 12:Excluding the first line of master page. Select the remaining html code of the master page.


Step 13: Remove the selected html code from master page. 

Step 14:Select the html source file from template folder and open it in notepad text editor.

Step 15:Select the complete html code from template webpage source file. And Copy the complete source code.



Step 16:Now select the master page.


Step 17: Paste the html code in master page.


Step 18: Select master page design view mode. And look the view.


Step 19: Select the Element tag from design view that you want to delete. And press delete key from keyboard.


Step 20: After deleting the unwanted element of webpage the final view like this.


Step 21: Add content placeholder in template. A message box appear and press yes.


Step 22: Add a webpage in the project .Select the master page from check box. And click add.

Step 23: Select the master page and click ok



Step 24: Webpage is added in your project. Go into design view of webpage. And add some text in contentplaceholder.


Step 25: Start debugging. A Confirmation message box appear and click ok.


Step 26: Look the final result in browser.


Hope this will help you.
























Saturday, 2 August 2014

How-To Remove the Dashed Line Above Blogger's Footer

Go to TEMPLATE » EDIT HTML and search (CTRL+F) your template's code for:


.footer-outer {  border-top: $(footer.bevel) dashed #bbbbbb;}


Then replace the above-mentioned code with:



.footer-outer {  border-top: $(footer.bevel) dashed #ffffff;}

Friday, 1 August 2014

How To Remove Blogger Attribution Gadget


The Attribution gadget is the gadget in the footer that says "Powered By Blogger". If you have tried to remove this then you may of noticed this gadget is locked into you blog. To unlock it, follow the next steps:

Step 1. Log in to your Dashboard, go to Template > Edit HTML




Step 2. Click anywhere inside the code area and press the CTRL + F keys to open the Blogger' search box


Step 3. Type or paste the following tag inside the search box then hit Enter to find it:


</head>

Step 4. Just above </head> add this code:


<style>
#Attribution1 {
display: none;
}
</style>

Step 5. Click on the Save Template button to save the changes.