Wednesday, November 12, 2014

Go Launcher Prime : Best Launcher for Android

If you are an android user you should know Go Launcher, most feature-rich Android launchers builder. Go Launcher Prime developed by Go Launcher is available on the market. You can make your android phone different by using this Launcher.

Two ways to install Blogger template

Blogger.com is a free weblog publishing tool from Google. Anyone can use this tool for sharing text, photos and videos. To get more readers and visitors, you need a great design for your blog. Blogger templates contain these designs.

How to create splash ad in wordpress

This is the era of WordPress. In this time you should know the best use of it. If you have a website built with WordPress and you want to monetize it, you must have to set up ads. Splash Ads is one of the most important to monetize. This type of ad comes up to the visitors before getting the website content. After few seconds the ad gets close and the main website content opens.

Tuesday, November 11, 2014

Hi, everybody. What’s up? Today I’m going to show you something useful for your WordPress CMS.
I think you know about the uses of Appearance >> Editor. You can edit codes of your themes here. It’s not easy to use the default Theme Editor, at least I think. Suppose one day you logged in to your Dashboard, navigated to the Editor and saw that your editor is colorful and well decorated. All lines of codes in the editor are numbered per line.

Friday, November 7, 2014

Adobe Photoshop CS5 Keyboard Shortcuts

Few days ago, someone emailed me to share Adobe Photoshop CS5 Keyboard Shortcuts. So I’m creating this post. However, you should know that you can get Adobe Photoshop CS5 Keyboard Shortcuts from the Edit menu of your copy of Photoshop. Or you can press “Alt+Shift+Ctrl+K” from your keyboard after opening the Photoshop. Then you will get a list of Keyboard Shortcuts.
All Adobe Photoshop CS5 Keyboard Shortcuts are given bellow. Check out and try it yourself.

Test series has going to be finished. Only one match is waiting to be held on Chittagong. Now it’s time to wait for ODI (One Day International) matches. Let’s go to get the fixture.
Bangladesh VS Zimbabwe ODI Series 2014
First ODI:
Date - 19th November.
Time – 04:00 AM (GMT)
Venue – Mirpur Stadium, Dhaka
Second ODI:
Date – 21st November.
Time – 04:00 AM (GMT)
Venue – Mirpur Stadium, Dhaka
Third ODI:
Date – 23rd November.
Time – 04:00 AM (GMT)
Venue – Mirpur Stadium, Dhaka
Fourth ODI:
Date – 26th November.
Time – 04:00 AM (GMT)
Venue – Chittagong
Fifth ODI:
Time – 04:00 AM (GMT)
Venue – Chittagong


Please keep visiting if you want to watch live streaming of Bangladesh VS Zimbabwe ODI matches. The matches will be live here on this page. 

Tuesday, July 22, 2014

Create rounded border for Menu using CSS

Everyone wants a stylish website. There are many ways to stylize your website. Suppose you want to change your menu layout like you want a rounded border. You can get it from your style.css file. Just follow few steps given bellow. 
Go to your style.css file. Find out css class or id for your website’s menu. Now copy the codes given bellow – 
border:1px solid #3c3c3c;                                                                                                                   
border-top-left-radius: 5px;                                                                                                                 
border-bottom-left-radius: 5px;                                                                                                           
border-top-right-radius: 5px;                                                                                                               
border-bottom-right-radius: 5px;                                                                                                         

Paste it in the place of your menu border in style.css. Replace #3c3c3c with your own color. Now save the file and check it. 

You can change the radius size as you want. But the given size is better I think. Try it yourself. Thank you so much. 

Monday, July 21, 2014

If you want to customize any of the pages of your WordPress site you have to follow some instructions. Today I’ll share the easy instructions to you.
At first copy the page.php file from your theme. Then paste it at same place. It will be “page - Copy.php”. Now rename the file as “your-template-name.php”. Now open it using Notepad + +. Find out -
                                                <?php get_header(); ?>                                                                           
Replace this code with 
<?php                                                                                                                                                     
/*                                                                                                                                                            
Template Name: Custom Template                                                                                                          
 */                                                                                                                                                           
get_header(); ?>                                                                                                                                     
Now find out these codes –
<?php while ( have_posts() ) : the_post(); ?>                                                                                          
                                                            <?php get_template_part( 'content', 'page' ); ?>                          
                                                <?php endwhile; ?>                                                                                
Replace these codes with your own custom design’s code.
Now include styles of your newly added code in your theme’s style.css.
You have just created your own custom template. Now go to your dashboard, click on Add New Page. You will get a new option in your page editor named “Template”. Chose your newly created custom template from the list and publish the page.

Now view your page and check if it is working. 

Saturday, July 19, 2014

Google Analytics is a great website traffic tracking tool. It is being used by most of the webmasters. The users of Blogger.com are also using this powerful tool to track their blog’s traffic.
Google Analytics works well on Blogger most of the time. But sometimes it may not be work. Today I’m going to tell you about this matter.
If you already have a Google Analytics account, simply copy your blog’s Google Analytics Tracking ID. If you don’t have, create an account first using your Gmail account.
Then go to your Blogger > Settings > Others. Find a field for Google Analytics Web Property ID. Paste the copied Tracking ID here.
Now check your blog’s analytics property from Google Analytics. If it is working then all are ok.
If you find it is not working, here are some steps for you.
Go to Blogger >> Template >> Edit HTML. Find out </body> tag in the file. Paste the following code above </body>.
                                   <b:include data='blog' name='google-analytics'/>                                                 

Then click on Save Template. Now it will work properly. 

Friday, July 18, 2014

Embed SWF file in your WordPress Theme

Flash files can give extra uniqueness of your WordPress site. But it’s not easy to embed a flash (.swf) file to WordPress, because you won’t be able to upload flash for security reasons.

There are many methods. You can use a plugin to complete this task. You can also do it by placing some codes into your theme template if you want to show it directly/by default on theme. I’m going to describe the last method step by step.

Step – 1: At first, create a folder named “swf” into your root directory. Upload your flash file into the newly created folder.
Step – 2: If you want to show the file on the top of every page, open the header.php file. Find out the place where you want to show it. Then put these codes in the exact place of the header.php file.

                    <div class="flash">
<object width="960" height="250">
                                                            <param name="movie" value="<?php echo get_template_directory_uri(); ?>/swf/your-file-name.swf"></param>
                                                            <param name="quality" value="high"></param>
                                                            <param name="wmode" value="window"></param>
                                                            <param name="menu" value="false"></param>
                                                            <param name="bgcolor" value="#FFFFFF"></param>
                                                            <param name="flashvars" value=""></param>
                                                            <embed type="application/x-shockwave-flash" width="960" height="250" src="<?php echo get_template_directory_uri(); ?>/swf/your-file-name.swf" quality="high" bgcolor="#FFFFFF" wmode="window" menu="false" flashvars="" ></embed>
                                                            </object>
                                                            </div>

Step – 3: Find out “your-file-name.swf” and replace it with the file name you uploaded into your swf folder.
Step – 4: Now visit your site and check if it is working. It works for me, hope will also work for you.
Step – 5: If you want to stylize the flash file section from css, you can do it using a class “flash”.

That’s all. Try it yourself and run your own flash file.