Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

Seo Master present to you:

Good news for all soccer game lovers, who quite often have to miss the main events due to their workloads. If you have the Android phone, you will be pleased to know that there are many apps designed for you to enjoy your favorite sports. You can watch your favorite game, no matter wherever you are.
There are numerous soccer fans around the world, and they are simply passionate about the game. Thanks to the latest smartphone apps, you can watch them from anywhere and anytime. Below mentioned are some soccer apps which will surely satisfy your love for the game.

Soccer Scored - FotMob:

This is one of the best apps ever designed for soccer fans. With this excellent app, you will never have to miss out on important event of the game. It can be any game played anywhere in the world, you will get all the information on your phone. You get all the necessary info like team lineup, cards, substitutions, penalties, missed penalties etc. You can view any details of the matches, even at your workplace.

Real Football 2012:

If you are a soccer fanatic, then this gaming application is just perfect for you. After all, the app is especially designed for diehard soccer fans like you. You will just fall for its graphics which enhances the gaming experiences. You are free to choose game types like exhibition matches or training mode. The most interesting thing about the app is you can design your personal jersey, and you also can share it with your friends.

SPN SoccerCenter:

This app does not only update you on any live game taking place across the planet. It also features all football leagues in the world. This app is one of the most comprehensive live score applications to be ever designed. In addition to soccer, this app also provides updates on other games such as golf, tennis, water polo, basketball etc.

THE Football App:

It is also known as a live score application for football fans, and it comes with many exceptional features. One of the most excellent features of this app is that you can actually listen to the live commentaries. You can also choose your favorite team and get updates about its standings and stats.

Pocket Soccer:

Any soccer fan would love to have this gaming app on their Android phone. It allows them to enjoy their favorite game. Its interface is so simple that even beginners can use it easily. This app is quite similar to a classic board game.

GoalTone: Live Soccer Scores:

Live Soccer results for all your favorite teams. GoalTone is the Soccer ringtone - You will hear the GoalTone sound every time a team scores. You never need to refresh your screen. Goals updates will come directly to you. Even when the application is closed, a goal notification will pop. If you love Soccer, and want to keep track of all your favorite Soccer teams, GoalTone is the app for you.

Conclusion:

Viewing the scores and rankings of your favorite game is no longer a difficulty. You can get any updates on your favorite teams. Using them is pretty simple. Thus, getting connected to the game you are passionate about has become quite simple.



Author Bio:
This article has been written by Alex. Soccer is my favorite game, and I love playing FIFA games on my Play Station. Our website, http://www.soccerquestions.net/ is an excellent place for all soccer fanatics to jam up. Visit us today.
2013, By: Seo Master
Seo Master present to you:

To hide images/pictures from our blogger posts and to make them appear only in homepage, we will have to add just a small piece of CSS code in our template and then use the class "hidepic" each time we want to hide an image.

Just follow the next steps:

Step 1. Go to Dashboard - Template - Edit HTML ( click on Proceed button )


 Step 2. Select "Expand Widget Template" (make a backup)

     Step 3. Find (CTRL + F) this code in your template:

        }]]></b:skin>

    Step 4. Copy and paste the following code just below it

    <b:if cond='data:blog.pageType != &quot;index&quot;'>
    <style>
    .hidepic{
    display: none;
    }
    </style>
    </b:if>

    Step 5. Save the Template.

    Now everytime you create a post, firstly add the pic you want to hide and then switch to HTML tab where you'll see the HTML code of the image you have added that will look something like this:

    <div class="separator" style="clear: both; text-align: center;">
    <a href="http://www.matrixar.com/-shsd_c51zRA/T6UeoPgcbII/AAAAAAAACCc/sYI6WB22CaM/s1600/fire_bird_by_fhrankee-d32af8v.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="http://www.matrixar.com/-shsd_c51zRA/T6UeoPgcbII/AAAAAAAACCc/sYI6WB22CaM/s320/fire_bird_by_fhrankee-d32af8v.png" width="320" /></a></div>

    Note: it should be at the exact location where your image has been added 
    (if the image is at the middle of the text, then the code should be found at the middle)

    Step 6. Replace "separator" with "hidepic" - see the screenshot below:


    If you need more help, please leave a comment below.

    2013, By: Seo Master
    Seo Master present to you:

    One of the drawbacks of Blogger is its header. When you are using text as your blog title, you will find that there is no problem but when you add an image or logo to the header portion instead of title and description or having description placed after the image from Layout > Page Elements tab, you will find that it’s not the logo but the whole header becomes clickable. So in this tutorial we will find out how to resize the Blogger header in new templates from template designer.

    aaaaad

     

      Step 1: Make yourself a logo or image in any photo editing software with a particular size and note down its width and height and upload it to your image hosting site. In this tutorial, I will use my logo with 200 pixels in width and 35pixels of height and Blogger’s default template from Picture Window(2nd one).

    Step 2: Go to Design > Edit HTML tab and backup your template.

    Step 3: Find ]]></b:skin> and before it add the following CSS:

    .header-left{
    display: inline-block;
    height: 35px;
    width: 200px;
    float: left;
    }

    Replace the bold pixels with your image’s height and width and increase or decrease the margins to position your logo. Changing “float: left;” to “float: right;” will change the position of the displayed logo, whether you want it to float to left or right.

    Step 4: Find for the below codes and emphasize on the bold snippets:

    <div class='fauxborder-left header-fauxborder-left'>
    <div class='fauxborder-right header-fauxborder-right'/>
    <div class='region-inner header-inner'>
    <b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
    <b:widget id='Header1' locked='true' title='Blog's Title (Header)' type='Header'/>
    </b:section>
    </div>
    </div>

    Replace the bold snippet with:

    <b:section class='header header-left' id='header' maxwidgets='1' showaddelement='no'>

    As you can find out that an extra class, header-left has been added, highlighted in green. If you want then you can add this class, as shown above, without replacing the whole snippet.

    Now “Preview” your template, you will find that the background color of Blogger’s header is not visible or it's missing.

     


    aaaaad


    So you need to add some more snippets to bring it back. So find for closing div (highlighted in red) and before it add:

    <div style='clear:both;'/>

    So the whole code will look like:

    <div class='fauxborder-left header-fauxborder-left'>
    <div class='fauxborder-right header-fauxborder-right'/>
    <div class='region-inner header-inner'>
    <b:section class='header header-left' id='header' maxwidgets='1' showaddelement='no'>
    <b:widget id='Header1' locked='true' title='Blog's Title (Header)' type='Header'/>
    </b:section>
    <div style='clear:both;'/>
    </div>
    </div>

    Remember that "Blog's Title" is referred to the title of your blog.

    Step 5: Save your template and view your blog. You have successfully added your logo to header and resized it to logo size. To recheck, on placing the cursor over the header, you will find that the whole header in not clickable, instead it’s your logo only.

    2013, By: Seo Master
    Powered by Blogger.