Irfan one blogger friend who has friendship familiar with. Because this award is pro-backlink, according to the requirements, I will share again to 10 friends. They are:
wong cilek, purwodadi, flowers, dany, nofriady, sexy girls, bhakti, safe energy, gab's mom, irafan.
To take this award, there are requirements. Here are copas any posts irfan's blog.
"For anyone who is receiving this award are required to share this award back to ten friends. And the next award recipient must put the links below in your blog or article:
1. Robby Hakim
2. AeArc
3. Surya-tips
4. Antaresa Mayuda
5. Read Book Fanda
6. Reni Judhanto
7. Evylia Hardy
8. Eric Ariyanto
9. Irfan
10. cah kampung
The rule is like this (sorry i copy only, because length of a): before you put the link above, you must remove the number 1 from the list. So that all participants increased 1 level. Before the number 2 be number 1, number 3 so 2, ff. Link and enter your own in the bottom number (10). But I remember, all you have to run it in the fair. If each award recipient is able to give this award to only 5 people and they all do, then the number of backlink will is obtained
When you position 10, the number of backlink = 1
Position 9, amount backlink = 5
Position 8, amount backlink = 25
Position 7, amount backlink = 125
Position 6, amount backlink = 625
Position 5, amount backlink = 3.125
Position 4, amount backlink = 15.625
Position 3, amount backlink = 78.125
Position 2, amount backlink = 390.625
Position 1, amount backlink = 1,953,125
And all use keywords that you want. From an SEO you have to get 1,953,125 backlink and side effects associated with the web visitor, if you click on the link downline that, you also get additional traffik.
ok, please copy and paste it, and remove the number 1 and add the blog link / website in your position 10. Remember, you must start from the position 10 so that maximum results. Because if you tiba2 in position 1, the link will disappear once you have signed in the position to 10. "
So any posts from copas Bung Eric. Congratulations to take his award, friend-friend. Do not forget to thank once again for irfan who already give this award to me. Goodbye any posts in the next award of the remaining pro-backlink.
Wednesday, July 22, 2009
Awards for you
Monday, July 20, 2009
adding links to the top menu
Whether you are using the default header or the top navigation (for those who have replaced the standard header with a custom header graphic and activated the top menu), adding links to either the header (in button style) or the top navigation (normal text link style) is the same procedure:
1. Adding links to the header navigation:
Open the header template (header.php) in your editor and find this code:
<div id="headernav">
<ul>
<li><a href="<?php bloginfo('url'); ?>">Home</a></li>
<!- - <li><a href="URL">Link2</a></li> - ->
<!- - <li><a href="URL">Link3</a></li> - ->
<?php
// wp_list_pages(�title_li=&depth=3&sort_column=menu_order�);
// wp_list_categories(�title_li=&depth=3�);
?>
</ul>
</div>
As you can see, the links are simply list items of an unordered list. I have already added two more list items that are commented out, so you only need to remove the HTML comments before ( ) the list items and replace “URL” with the target URL for the link and “Link2″ / “Link3″ with the anchor text for the link.
If you need more links, simply add more list items in the same style.
You can also use categories or pages as links inside the header. To add either your WP pages or your blog categories to the header, simply remove the PHP comment ( // ) before the corresponding line in the code above, i.e.:
wp_list_pages… for pages
wp_list_categories … for categories
Caveat: Because of the drop-down menus, the links inside header / top navigation should not exceed one line or the drop-down menu won´t work.
2. Adding links to the top menu:
Open the top menu template (topmenu.php) in your editor and find this code:
<div id="topmenu">
<ul>
<li ><a href="<?php bloginfo('url'); ?>">Home</a></li>
<!- - <li><a href="URL">Link2</a></li> - ->
<!- - <li><a href="URL">Link3</a></li> - ->
<?php
// wp_list_pages(�title_li=&depth=3&sort_column=menu_order�);
// wp_list_categories(�title_li=&depth=3�);
?>
</ul>
</div>
Proceed in the same way as explained above (see 1.)
editing, adding and removing widgets
Although the sidebars in my themes are enabled for the use of WordPress widgets, some of you may want to manually edit the sidebar(s), which is pretty easy. Depending on the layout, your theme has either a left sidebar, a right sidebar or both sidebars. All the HTML code for the sidebar(s) is located in the sidebar template (sidebar.php) of your theme.
I have included HTML comments and space between single widgets in the source code so you can easily see where the left or right sidebar starts and ends and where the single widgets start and end.
The basic HTML markup of a sidebar column
In the example code below you can see that each sidebar is a HTML DIV and the single widgets are list items of an unordered list, with H4 headings as widget titles and nested unordered lists for the widget content.
<!- - Start Left Sidebar - ->
<div id="leftmenu">
<div class="nav">
<ul>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : else : ?>
<!- - Widget Name - ->
<li><h4>Widget Title</h4>
<ul>
<li>
Widget Content Goes Here
</li>
</ul>
</li>
<!- - Latest Posts - ->
<li id="mostrecent"><h4>Latest Posts</h4>
<ul><?php wp_get_archives('type=postbypost&limit=15'); ?></ul>
</li>
<!- - Monthly Archives - ->
<li id="archives"><h4>Archives</h4>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php endif; ?>
</ul>
</div><!- - end nav - ->
</div><!- - end left sidebar - ->
If you want to move a widget to a different location in the sidebar, or from the one to another sidebar, simply cut out the entire block of HTML code of the widget including the HTML comment that describes the widget and paste it somewhere else into the space between other widgets. To remove the widget, simply delete it.
If you want to add a custom widget, use the following HTML markup:
<!- - Widget Name - ->
<li><h4>Widget Title</h4>
<ul>
<li>
Widget Content Goes Here
</li>
</ul>
</li>
The above code will display a widget with rounded borders and the h4 heading with background color.
If you want to add a widget without any borders at all (f.ex to display AdSense ads or image ads), you can use either of the following HTML markups instead:
<!- - Widget Name - ->
<li style="background: none">
Widget Content, Text, Images, AdSense code, vertical banners, image ads, etc �
</li>
<!- - Widget Name - ->
<li style="background: none"><h4 style="background: none">Widget Title</h4>
<ul style="background: none">
<li>
Widget Content, Text, Images, AdSense code, vertical banners, image ads, etc �
</li>
</ul>
</li>
good luck four you!!!
give thanks to Allah
Give thanks to Allah, for the moon and the stars
prays in all day full, what is and what was
take hold of your iman, dont givin to shaitan
oh you who believe please give thanks to Allah.
Allahu Ghefor Allahu Rahim Allahu yuhibo el Mohsinin,
hua Khalikhone hua Razikhone Hwahua ala kolli sheiin khadir.
Allah is Ghefor Allah is Rahim Allah is the one who loves the Mohsinin,
he is a creater, he is a sistainer and he is the one who has power over all.
Give thanks to Allah, for the moon and the stars
prays in all day full, what is and what was
take hold of your iman, dont givin to shaitan
oh you who believe please give thanks to Allah.
Allahu Ghefor Allahu Rahim Allahu yuhibo el Mohsinin,
hua Khalikhone hua Razikhone Hwahua ala kolli sheiin khadir.
Allah is Ghefor Allah is Rahim Allah is the one who loves the Mohsinin,
he is a creater, he is a sistainer and he is the one who has power over all.
by : Michael Jackson



