Direct link a this Video http://tinyurl.com/35qk54j
This video create with http://www.clipgenerator.com/
- - All news BLOGGER - - All news WORDPRESS - - Message for you ! - -
This post helpful? Share it! Thanks to All!
Under Template->Page Elements tab, click “Add a Page Element” at the place where you want your search box to appear. Select “HTML/JavaScript”.
There are several HTML codes posted on the net. I tried a few, and found the one that works as follows:-
| <p align="left"> <form id="searchthis" action="YOUR BLOG URL/search" style="display:inline;" method="get"> <strong>NAME OF YOUR BLOG<br/></strong> <input id="b-query" maxlength="255" name="q" size="20" type="text"/> <input id="b-searchbtn" value="Search" type="submit"/> </form></p> |
|---|
| size="20" |
|---|
changes the size of the search bar "20" "30" "40" ......
| value="Search" |
|---|
change the word that appears on the search button.
This post helpful? Share it! Thanks to All!
The HTML code to insert into their web pages can be generated from this page http://developers.facebook.com/docs/reference/plugins/like and then be converted for Blogger. Simplifies everything for you and me providing the code used more generally:
<!-- I like to button facebook - start -->
<b:if cond='data:blog.pageType == "item"'>
<iframe allowTransparency='true' expr:src='"http://www.facebook.com/plugins/like.php?href=" + data:post.url + "&layout=standard&show_faces=false&width=100&action=like&font=arial&colorscheme=light"' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:450px; height:40px;'/>
</b:if>
<!-- I like to button facebook - end -->
The first two lines I highlighted in red can usually be removed. Leave the button will only appear on individual post page (it's always the option I prefer). The value in green (450) establishes the width of the element and can decrease if you have problems in your blog.
Enter the code in your template
From the Dashboard, go to Design -> Edit HTML and select the "Expand Widget Templates". Look for the line of code that contains:
post.body
<data:post.body/>
Remove the button from the template
If you decide to remove the button from the blog, go to Design -> Edit HTML, select "Expand Widget Templates" and delete everything that lies between the line:
<! - I like to facebook button - start ->
and
<! - I like to button facebook - end ->
I urge you to use it without sparingly on my blog, and for me a bit 'of advertising (the best way to thank me!) But also to let me know which articles appreciated more and I can adjust accordingly. Find the button I like facebook high above the title and date of the post! Thanks!
Over the last couple weeks I’ve been focusing on traffic building, link building and SEO on my WordPress blog. All three of these website strategies go hand in hand and all build on each other. In this post I will discussing how to make sure your WordPress blog is running efficiently.
WordPress does a lot of cool things in the background to make your website run smoothly. Have you ever noticed that when you change a blog post from one category to another, somehow, someway, you always arrive at the new location? That’s WordPress doing it’s magic! Unfortunately, Humans interact with a blog differently than search engine spiders, so while your permalinks might look nice and organized, the search engine spiders might see problems.
The best place to start is with a blog audit. If your WordPress blog is not using Google Webmaster Tools, this is a great place to start. Google Webmaster tools will not only show you how Google sees your website, but also recommend tips to improve the crawling of your site.
I just did a blog audit and found a couple problems. My sitemap was not getting generated anymore due to permission problems. Even worse the old sitemap had many bad links. Using webmaster tools I could see that Google received 80 posts from me, but only indexed 4. OUCH! Of course I have many more links in Google from other websites. The sitemap is only a recommendation to Google, but I highly recommend keeping up to date. I used the the Google XML Sitemap plugin.
I also had a duplicate content problem. To me, this is really frustrating, because again, as a human, I see my blog a certain way and it looks fine. Then looking at my website from the search engine spider’s point of view, I see many of my posts repeated as many as 5 times.
You might think that is great… 1 post, 5 entries in Google. Well, it’s not because instead of having one powerful link to your website, you have 5 at 20% power. Try cooking a potato at 20% power, it’s a waste of time.
How does this happen? I was using All-in-One SEO plugin and that is suppose to have canonical links, but I still have duplicate content.
So like any hacker, I built a simple Googlebot tracker to see how Google spiders my site… Wow, not what I expected. There is so much I’m learning from the Googlebot tracker, I will have many posts on this little bot, but for now let’s just say, I bet you are wasting Google’s time with your WordPress blog!
The Googlebot doesn’t just come into your website and spider all your content. In my case it comes and grabs one page and leaves. It’s doing this every couple minutes for a total of about 200-300 per day. Webmaster tools will show you how many times you get spidered, but will not show you what pages get indexed.
I was horrified to see that I was wasting Google juice on tags and categories. If Google is only going to hit your website 100 times a day, you better try to give Google 100 different blog posts. If you have 10 tags per post, you might be giving Google 1 blog post with 10 different links. Google then has to choose which page is the highest priority. You can see how 100 blog posts, can easily turn to 10 blog posts because we all love to tag our stuff.
How do you solve this. First of all it takes time. you have many links in Google and the Googlebot will continue to follow them, which isn’t bad… Don’t try to shut off the Googlebot, just make changes for the future of your website.
It's really very simple, go into your dashboard, and add an html javascript with the following features
<a href="Web page address"><img src="image button" border="0" /></a>
To create your buttons I recommend http://cooltext.com/
To create the link and keep the images online free of buttons you can use http://imageshack.us/
If you need more help buttons in the same area, home, contact, about us ......, open the same html element javascript and complemented each time the same code by changing the link of the page and the link of the button.
Creating buttons with cooltext clik the top menu Buttons
This post helpful ? So share ! Thanks to all friends !
Log in the blog and go to Layout-> Edit HTML, and first back up the template if you make a mistake, you can always go back.
In html code, try the following lines (which could be slightly different, but you should recognize them without problems):
body {
background:$bgcolor;
margin:0px;
padding: 0;
color:$textcolor;
font:x-small Helvetica sans-serif;
font-size/* */:/**/small;
font-size: /**/small;
}
making changes and adding the line written in red:
body {
background:$bgcolor;
background-image:url(Image Location);
margin:0px;
padding: 0;
color:$textcolor;
font:x-small Helvetica sans-serif;
font-size/* */:/**/small;
font-size: /**/small;
}
Replacing address with the link to the image you have chosen as background. Save the template and view the blog to see your new background.
----Manage image repetition
Following that described above, the image will appear repeatedly: to avoid this effect, add the following line:
background-repeat:no-repeat;
just below the new line you added earlier. If you want the image repeat only horizontally, the line will instead be added as follows:
background-repeat:repeat-x;
To have to repeat vertically instead:
background-repeat:repeat-y;
Make your tests running and trying various combinations of background-repeat.
----Manage the position of image
You may have noticed that the image always appears at the top left, you can "move" by adding a third line, the following:
background-position:x% y%;
Substituting x and y%% two different percentages that "move" the picture: if the percentages are positive, the image moves to the right and down respectively, though the percentages are respectively negative image will move to the left and upward . For example the following line:
background-position: -10% 20%;
move the picture left (making it out of the page) and below. Then try different combinations to see how these values affect the display image.
Instead of two percent, you can use the words TOP, BOTTOM, LEFT, RIGHT, CENTER to decide where to align the image, taking into account that the first value indicates the horizontal positioning (can be LEFT, RIGHT, CENTER) and the second one Vertical (can be TOP, BOTTOM, CENTER, CENTER will apply unless specified). So for example the following line:
background-position: center top;
display the image at top center.
----Managing the scrolling image
If you scroll down, you will see that the image will move along the page. And 'possible but ensure that the image always remains visible even through the page, the image will always be there. To obtain this fourth add the following line:
background-attachment: fixed;
If you go to see your blog, you will also scroll the image will always be there. To return to the effect of the first, just remove the line or change it as follows:
background-attachment: scroll;
----Let it all together
Review the html code with all four changes:
body {
background:$bgcolor;
background-image:url(indirizzo dell'immagine);
background-repeat:repeat-y;
background-position:center top;
background-attachment: fixed;
margin:0px;
padding: 0;
color:$textcolor;
font:x-small Helvetica sans-serif;
font-size/* */:/**/small;
font-size: /**/small;
}
In this case the added rows will display the image at the center, and will repeat vertically from the top, and will fixed when scrolling.
This post helpful ? So share ! Thanks to all friends !
Picknzip is a web application that lets you download photos from Facebook.
Its operation is very simple. You connect through Facebook, you click a contact, navigating between albums and tagged photos, add photos to your selection and proceed to the download.
Pick & Zip is a free tool that does not require registration.
With OnePage you can easily create a real online business card.
You register for free or you connect through Twitter, Facebook or LinkedIn and create a personal profile.
Now you can add data and information to our virtual identity as the type of profession, email, phone number, and social networks to which it belongs.
The business card you create can be shared with a link or incorporated into any web page, for example in a personal blog via code.
OnePage service is completely free.
TwitFlink is a web application that helps you find all links shared by a user on Twitter.
Its operation is very simple. Just enter a username and proceed to obtain the list of tweet of that user where links are shared.
They can also be filtered by keyword.
TwitFlink is a mashup that does not require free registration.
SEO Ultimate is an all-in-one SEO plugin with these powerful features:
Title Tag Rewriter -- UPDATED in Version 2.9
<title> tag for improved keyword SEO. <title> tag contents for any individual post, page, attachment, category, or post tag on your blog. Also supports custom post types. <title> tag. <title> tags of posts, pages, categories, tags, archives, search results, and more!Noindex Manager
<meta name="robots" content="noindex,follow" /> tag to archives, comment feeds, the login page, and more. Meta Editor
<meta> description/keyword tags for posts, pages, and the homepage. noodp, noydir, and noarchive).Canonicalizer
<link rel="canonical" /> SEO tags. 404 Monitor -- UPDATED in Version 3.6
Linkbox Inserter
File Editor
.htaccess editor. robots.txt editor.Slug Optimizer
Competition Researcher
More Link Customizer
<strong> or <em> tags in the anchor text if so desired.Internal Relevance Researcher
Deeplink Juggernaut -- UPDATED in Version 3.2
Code Inserter
<head> tag, footer, or item content. Rich Snippet Creator
Sharing Facilitator -- NEW in Version 3.5
Settings Manager
Additional features
Features Coming Soon
Download your free copy of SEO Ultimate today.
You can install this plugin from your WordPress control panel, just the plugin section Just click "Add New" in the search box enter SEO Ultimate, then clik clik search plugin and then install.
Favitt can create a custom search engine with a set of search engines. Making it essentially a search engine multiple.
One can for example search on Google and Bing or both, on YouTube or LastFM, you can search for information, pictures, videos.
But the most interesting aspect is that you can add our favorite places to search only within them.
Favitt allows complete customization of the layout engine. You can add one or more background images and personal logo. It 'can also save the bookmarks.
You register for free and get personalized URL to use as our search engine and personal to share online.
They are often quite easily by name, YouTube to MP3 is a web application that lets you convert YouTube videos to MP3.
Its operation is very simple. Just copy and paste the URL into the field and carry the movie.
You can choose from three levels of audio quality: high, medium and low.
We can wait until the conversion process, or enter a valid email address to be sent a link to download the MP3 directly obtained.
YouTubeToMP3 is a free tool that does not require registration.