Pages - Menu

Thursday 31 December 2009

Add Advanced Three Wrapper Widget in blogger

You have seen the three wrapper widget in many modified templates. It is very useful in blogging platform. You can add html and javascript gadgets like recent posts, recent articles, popular posts or whatever you like. It is better to add gadgets in sidebar. But it's more better to keep widget in bottom of the page.

As it is bottom of the page, readers can read your full article first and widget in last. Where widgets are not much important your post. See the following example:




You can add this widget by following the steps.

First Log in to Blogger.com

Go to Layout -> Edit Html Tabs.

Now search for these code:

   

   

   Paste your code here. And paste the below code as show above:






 
 
   


 

 

   
 


 









 
 
   


 

 

   
 


 









 
 
   


 

 

   
 


 






If you get some problems, you have to add the CSS code.

Now, find ]]>

Paste the following code before ]]>


#lower {
       margin:auto;
       padding: 0px 0px 20px 0px;
       width: 100%;
       background:#F6F6F6;
      
     

#lower-wrapper {
       margin:auto;
       padding: 30px 0px 20px 0px;
       width: 960px;

}

#lowerbar-wrapper {
       border:1px solid #DEDEDE;
       background:#FFFFFF;
       float: left;
       margin: 0px 5px auto;
       padding-bottom: 20px;
       width: 32%;
       text-align: justify;
       font-size:100%;
       line-height: 1.6em;
       word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
       overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}


       .lowerbar {margin: 0; padding: 0;}
       .lowerbar .widget {margin: 0; padding: 10px 20px 0px 20px;}


.lowerbar h2 {
       margin: 0px 0px 10px 0px;
       padding: 6px 0px 10px 6px;
       background: #7AA1C3;
       text-align: left;
       color:#FFF;
       font-weight: normal;
       font-size:16px;
}

.lowerbar ul {
      margin: 0px 0px 0px 0px;
      padding: 0px 0px 0px 0px;
      list-style-type: none;
}

.lowerbar li {
      margin: 0px 0px 2px 0px;
      padding: 0px 0px 1px 0px;
      border-bottom: 1px solid #ccc;
}

.lowerbar a {color:  #698CAB; text-decoration: none;}
.lowerbar a:hover {text-decoration: underline; color: #B5BFC9;}
.lowerbar a:visited {text-decoration: none; color: #B5BFC9;}

You can customize the CSS code as your like and Save The Template. And you're Done!



See in the layout section. You can find three new advanced 'Ad a Gadget'. Now add whatever you like!

View This Article / Download>>

Sunday 13 December 2009

Making Flash Website Using Free Service

 The flash sites are mostly used for advertisements and good for web developments training. Wix is the best site which provide to make free flash websites. It is better and great for the web developers who are searching for making flash website. You have not to edit the layouts and other sources, just it is easy and cool:) Click, Drag and Drop only. It is simply like blogger, but blogger is in Editing HTMLs composing text etc..etc... In Wix you have to put the text in main editing text. This service has other extra tools like making animations, behavior. effects Look at my flash site provided by Wix. http://www.wix.com/kayastha/Hack-Tutors  . Isn't it cool?



Easy to customize and easy to edit. Register in Wix with your account and you can see the create button on the main page. Simply choose a design theme as you like and click EDIT.

 You have to allow the pop-up to edit the theme. To enable pop-up got to Tools>> Options>> Un check Block pop-up windows. Or you can use exceptions also.




 And you can edit the theme which opens in pop-up. See something like this.


Use this free service as you like. As I say this is simply like blogger adding widget, text, Image..etc... But you cannot use external links. You have to remember this is a flash website.

To edit the text containing in main page, you have to double click the text which you want to edit.

Use other tools to make perfect flash site.

Using this full service you can develop your web design skills and makes you perfect in creating flash sites. Hope you will like this service.Share me if you know more service like this :)

View This Article / Download>>

Saturday 5 December 2009

Arrange your Comments Avatar with CSS in blogger

Showing the profile image in blogger comments is being popular now a day. But, it comes to have many problems based on CSS code. Many of them are searching for good CSS based codes. As I have got some problem like there is no extra place for profile image avatars. Look at the below screenshot.



 Playing with CSS and having some fun I have a trick for that. Now, look at this solved problem.

Isn't it cool? Of course it is:)

Now how to do it.
First of all Go to Blogger > Settings > Comments and enable “Show profile images on comment” as before.

In your blogger's Edit Html section search for the following code in CSS area.

    #comments-block
    width: 580px;
    float: left;
    padding: 0;
    margin: 0;
Search only #comments-block for easy (Press Ctrl+F). Now you have to customize that CSS. Change the width 580px to 545px (The width must have different according to your template) and float: left; to float: right; or you can change it's width according to your template.

Now go to Blogger Layout >Edit HTML and backup your template. Don't forget to check "Expand widget templates". And find the following code:


Or if you haven't find the above code, try to find this:


 And finally you found it? Ok then replace it with this.


Now again find this line in code: ( You can find this code easily press Ctrl+F)


And replace it with below codes.










Now Just Go to blogger edit/Html and find for ]]> tag and place the below css codes before it.
/* Avatar */
.avatar-image-container img {
background:url(http://www.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=35);
width:35px;
height:35px;
}
Of course you can just edit the image link, height and width in above css codes as you like.

And save the template, you are Done! :) Look at my comments how it looks as better than before.
I hope your problem is solved like mine. If you have still some problem leave your comment I will try to solve it. Feel free to ask questions.

View This Article / Download>>