How To: Create Sexy bookmark like effect using pure css : re-cleaned


css sprite

You must heard of sexy bookmark plugin of wordpress. I really like the way it pop up the icons on hover. Sexy bookmarks is using javascript to accomplish this.

I tried it using only css. This method of using css is known as css sprites. Css sprite is very useful technique in optimizing website performance.

DEMO

Here is html code, simply copy and paste under your body tag:

1
2
3
4
5
6
7
8
<ul class="sharing-cl" id="text"> 
	<li><a class="sh-mail" href="">email</a></li> 
	<li><a class="sh-feed" href="">feed</a></li> 
	<li><a class="sh-tweet" href="">twitter</a></li> 
	<li><a class="sh-face" href="">facebook</a></li> 
	<li><a class="sh-su" href="">stumbleupon</a></li> 
	<li><a class="sh-digg" href="">digg</a></li> 
</ul>

Copy the CSS under your head tag:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.sharing-cl{
	  overflow:hidden;
	  margin:0;
	  padding:0;
	  list-style:none;
	}
	.sharing-cl a{
	  overflow:hidden;
	  width:75px;
	  height:30px;
	  float:left;
	  margin-right:5px;
	  text-indent:-200px;
	  background:url("http://www.webdeveloperjuice.com/demos/images/share-sprite.png") no-repeat;
	}
	a.sh-su{background-position:-210px -40px;}
	a.sh-feed{background-position:-70px -40px;}
	a.sh-tweet{background-position:-140px -40px;}
	a.sh-mail{background-position:0 -40px;}
	a.sh-digg{background-position:-280px -40px;}
	a.sh-face{
	  margin-right:0;
	  background-position:-350px -40px;
	}
	a.sh-mail:hover{background-position:0 1px;}
	a.sh-feed:hover{background-position:-70px 1px;}
	a.sh-tweet:hover{background-position:-140px 1px;}
	a.sh-su:hover{background-position:-210px 1px;}
	.sh-digg:hover{background-position:-280px 1px;}
	a.sh-face:hover{
	  background-position:-350px 1px;
	}
 
	#text{
	  margin-top:3em;
	  font-weight:bold;
	  font-family:helvetica,arial,sans-serif;
	}
	#text a{
	  text-indent:0;
	  height:auto;
	  text-align:center;
	  font-size:11px;
	  padding-top:35px;
	  color:#999;
	  text-decoration:none;
	}

Here is your image sprite upload in your images folder.

All Done!! Isn’t it easy?

Cheers!

Since this was my first post on this blog and i made silly mistakes. Thanks to Chris who made me realize i shouldn’t have done this.

Therefore i have updated this post as not to misguide challengers.

Guaranteed pass 646-985 exam using 70-647 free prep resources. Download E20-340 dumps to practice and pass real exam on time.

Comments

12.15.09

Wow thanks.. Was really searching for one. Good work web developer juice

12.15.09

This is so cool. I’m always elated when I find pure CSS substitutions since I’m so javascript phobic. Thanks for the great tutorial. :)

12.15.09

Thanks Elena

12.15.09

Cool visual effect and good use of a sprite so to cut down on your HTTP requests but it would probably make more semantic sense to use an unordered list for this example rather than a div with a bunch of anchors inside – we basically have a list of links here anyways right?

Also – the lack of any text content from within each anchor themselves make them unusable to non-sighted users, they won’t be able to know which link does what. You should include Bookmark this article on delicious, twitter or whatever for each one to fix this. This can then be hidden using text-indent: -9999em.

12.15.09

I would be concernd with the current treatment of partially obscuring the images tabbing to each link does not reveal the full image. Other than that and text and some other bits…WIN!

12.15.09

Good looking solution but the code is not clever. I’ve re-written the example using semantic markup and much shorter CSS:

http://www.wait-till-i.com/2010/01/08/cleaning-up-the-css-only-sexy-bookmark-demo-code

12.15.09

Thanks for nice clean up. Action appreciated

But still i have some questions :

1. Why you have used .sharing a {} twice when it can be done in once?
2. I found no “id=text” in your code while your CSS says #text{}
3. Why overflow:hidden is used when image is in background? Repetition of image is not possible if width is defined.

12.15.09

1. You’re right. It could be combined into one rule.

2. The text id is used in Chris’s example: http://isithackday.com/demos/sharing.html

3. overflow:hidden is used to clear the floated links.

12.15.09

Nice post mate

12.15.09

Interesting post. Are you able to provide

I agree

I as a rule don

Great advice and very true. One of the most important things bloggers, or any business, can do is try not to give up. Even when times are tough it

12.15.09

Noo! I’m using my iphone and I cannot seem to be able to open the page right. I will be back to read this later when I get back from lecture. The title looks like something I must read.

even though I have other idea on some little facts I have to to agree for a well written article. Keep up the very good work.

12.15.09

When I originally commented I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added I get four emails with the same comment. Is there any way you can remove me from that service?Thanks

12.15.09

Hey I clicked on your page by accident on bing while searching for something totally irrelevant but I am really glad that I did, You have just added yourself another subscriber. :)

12.15.09

Interesting, never thought of it like that

12.15.09

Some worth while posts on this blog and a load of good knowledge. If you get some free time, drop by and come and take a look at my efforts and give me a comment at Go Kart DIY

12.15.09

Thanks for the cool blog, it’s nice to read things that makes sense or have a point unlike a lot of geberish blogs. I do read a lot of those too :) sometimes it’s just fun. Keep it coming.

12.15.09

Nice blog, not like some boring ones. I had a good read, Thnx! Will keep an eye out for more of your blogs.

12.15.09

I was reading something else about this on another blog. Interesting. Your linear perspective on it is diametrically contradicted to what I read originally. I am still pondering over the opposite points of view, but I’m leaning to a great extent toward yours. And irrespective, that’s what is so good about modern democracy and the marketplace of ideas online.

Hi. Very interesting site. I found it on Google. I will definately recommend it to my friends. Please keep up the great work.

12.15.09

Another great post!

12.15.09

Thank you for taking time to write such a easy to read article on this topic.

12.15.09

Wow, nice to know! lol

12.15.09

Hi, I applaud your blog for informing people, very interesting article, keep up it coming :)

12.15.09

You should add a subscribers section to this blog, I think I’m addicted

12.15.09

I love your blog :)

12.15.09

I was wondering if you would be interested in becoming a guest poster on my website? In exchange you could include one link your post? Please let me know when you get a chance and I will send you my contact details – thanks.

Awesome post I just Love it, Keep adding more like this!

12.15.09

In searching for sites related to web hosting and specifically comparison hosting linux plan web, your site came up.

12.15.09

Is there any website that can give us a lots of information like what was stated here? Thanks for the Idea…

12.15.09

I need some help;p

this works great..i like to write as little js as possible so a pure css solution is awesome

12.15.09

Hey I found your webpage by mistake on feedburner while searching for something completely irrelevant but I am very happy that I did, You have just added yourself another subscriber. :)

12.15.09

hey this blog is great. I’m glad I came by this blog. Maybe I can contribute in the near future. PM ME on Yahoo AmandaLovesYou702 Thank you day237

Nice blog, interesting as well. Thanks for the great blog!

12.15.09

I don’t usually reply to posts but I will during this case. .

12.15.09

Hey I found your website by fluke on google while trying to find something completely unrelated but I am really happy that I did, You have just added yourself another subscriber. :)

12.15.09

Hey I came across your blog by mistake on google while trying to find something really different but I am truly glad that I did, You have just caught yourself another subscriber. :)

12.15.09

gr8 research bro ;p

12.15.09

Hahah john, i also came here by mistake, well i got this site really very helpful, here are lot more about javascripts, css and much more.

12.15.09

The plugin really makes her what, it’d use too happy to incorporate in my side) but unfortunately no Fertigsystem (or WordPress blog. Quick question: Is there a tutorial for the plugin also made for own web sites?

Daniel

12.15.09

Thanks!

How long have you been in this field? You seem to know a lot more than I do, I’d love to know your sources!

great..i like to write as little js as possible so a pure css solution is awesome

accident on bing while searching for something totally irrelevant but I am really glad that I did, You have just added yourself another subscriber.

Thanks for sharing this helpful info!

12.15.09

in IE6 it is now working.

For webdesign, should one focus on functionality before going into the design aspect?

Thanks for the post. Keep the great work.

Cheers to the author for giving me some solid ideas

12.15.09

Great post, I look forward to reading more.

12.15.09

thanks for tutor…
nice to meet you

I tried it using only css. This method of using css is known as css sprites. Css sprite is very useful technique in optimizing website performance.

Thanks for sharing.

12.15.09

This is my first time i visit here. I found so many interesting stuff in your blog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here keep up the good work.

Bookmark Sexy? I just heard about this. I’ll try it, I think this is very useful. thank you for the Demo.

12.15.09

a.sh-su{background-position:-210px -40px;}
a.sh-feed{background-position:-70px -40px;}
a.sh-tweet{background-position:-140px -40px;}
a.sh-mail{background-position:0 -40px;}
a.sh-digg{background-position:-280px -40px;}

Everything is very open and very clear explanation of issues. It contains truly information. Your website is very useful. Thanks for sharing. Looking forward to more!

12.15.09

Really good and interesting stuff.. keep writing

12.15.09

Hey thanks for this! I appreciate you taking the time to put things like this out for free for everyone. I’m sure it will come in handy very soon!

This is my first time i go post. I collected so many interesting things in your site especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! keep up the good work.Regards

12.15.09

Very informative article about css, thank you!

Very informative article about

12.15.09

Valuable information! Looking forward to seeing your notes posted.

12.15.09

Lovely post, i had been struggling to find something like this for quite a while. Thanks a lot for sharing. I am going to add it to my CSS aggregator site.

12.15.09

Thanks for an idea, you sparked at idea from a concept I hadn’t thought of yet. Now lets see if I can do something with it.

12.15.09

Nobody who accomplish result does so without acknowledging the support of others. The sapiential and reliant admit this aid with thankfulness. Our point is to support peoples with their custom essays writing.

12.15.09

I found your website perfect for my needs. It contains wonderful and helpful posts. I have read most of them and got a lot from them. To me, you are doing the great work

Do you represent the Freelance writing job service? Your notes referring to this topic can be great.

It sounds interesting but I am not sure that I agree with you completely.

12.15.09

Always wanted to use these types of bookmarks for my blog. They look great but had issues with them in the first release. Hopefully they work properly now.

12.15.09

pure css is the way to go. The rest is too sloppy

12.15.09

Excellent discussion here, this method of using css is known as css sprites. Css sprite is very useful technique in optimizing website performance.

I found your website perfect for my needs. It contains wonderful and helpful posts. I have read most of them and got a lot from them. To me, you are doing the great work

12.15.09

Adding to my bookmarks thanks. Needed more pictures though.

12.15.09

Wow this takes me back. Like your blog design too.

I think Css sprite is very useful technique in optimizing website performance.

12.15.09

Great thanks for this guys

You are a very intelligent individual!

If you have no idea how to write your psychology essay paper, you would have to hire the custom writing service to see a way to perform book reports.

Indeed a great work. Impressive and challenging for developers. Thanks

12.15.09

I have heard a lot on this point of view, but it seems to me that your ideas are the best.I like the post very much.

nice post keep posting like this i loved it to read this post, thanks for sharing

12.15.09

Adding to my bookmarks cheers, please consider a follow up post.

12.15.09

Hey, loved your post… I have implemented it on my site(not complete yet)…. I really love the Icons which you have used… can you tell me from where you got those…

Excellent this plug in is exactly what I was looking for :)

Thanks for taking the time out to eductate us!

12.15.09

Cool visual effect and good use of a sprite so to cut down on your HTTP requests but it would probably make more semantic sense to use an unordered list for this example rather than a div with a bunch of anchors inside – we basically have a list of links here anyways right?

Interesting article, Thanks!

Thank you very much for complete tips.

Thank you very much. bookmarked.

12.15.09

I like it, thx a lot for sharing….

12.15.09

Nice blog, interesting as well. Thanks for the great blog!

12.15.09

Really great, practicly explained and Helpful Points.

I like your way of sharing, very informative.

12.15.09

People deserve good life time and loans or commercial loan can make it much better. Because freedom relies on money.

12.15.09

I feel strongly about information and love learning more on this.

Different people do not know for sure how to create their music and movies essay. Hence, at present they should come along your best data related to this topic and write the highest quality essays ever.

12.15.09

I will be checking back sometime to see if you have any new content, cheers.

Nice way of sharing your idea, thank you for the information.

12.15.09

The exterior maintains some classic features such as a single story, low pitched roof, long proportions and clap board siding but also includes some modern upgrades such as large sliding glass doors, sliding window shade screens and a sleek metal roof.

12.15.09

This is a Fine,common Impression Write-up.Very helpful to 1 who is just finding the resouces about this part.It will Unquestionably help

12.15.09

Thank you so much for posting all of the excellent information! Looking forward to reading more posts.

12.15.09

This informative article helped me a lot! Saved your website, very excellent categories everywhere that I see here! I really appreciate the info, thanks.

12.15.09

This well written article encouraged me a lot! Saved the site, very excellent topics everywhere that I see here! I really appreciate the info, thanks.

12.15.09

Thank you very much for sharing this good content! Looking forward to seeintg more blogs.

12.15.09

This well written post encouraged me a lot! Bookmarked your blog, extremely great topics just about everywhere that I see here! I really appreciate the information, thank you.

12.15.09

You are a very intelligent individual!

I don’t usually reply to posts but I will during this case. .

12.15.09

Excellent write up, bookmarked your website for interest to see more information!

12.15.09

Great write up, saved the site in interest to see more information!

12.15.09

This good post encouraged me very much! Bookmarked the website, very great categories everywhere that I see here! I really appreciate the information, thanks.

12.15.09

This educational post helped me a lot! Saved your site, very excellent categories everywhere that I read here! I appreciate the information, thanks.

12.15.09

Excellent summary, bookmarked your site for interest to read more!

12.15.09

Great post, saved the site for interest to read more information!

12.15.09
12.15.09

Keep posting and i will follow you..

12.15.09

I plan on posting this posting all more than the web. Have to I give any credit/references back to you?

Reading intelligent post helps you learn things in the way.

12.15.09

This blog is fantastic.I would like to introduce this nice website to my friends

12.15.09

it is good to see a motivational business hiring. it is good to see a motivational blog spreading the news. good job stay fresh.

Great section,credit besieged putting that contemplation! “Nevertheless this is openly one wonderful situation. Merit for those priceless patterns including insights you have so provided here. Keep it!”

12.15.09

“Whats up, I’m thrilled to skim all of of this web page and am incredibly elated and thrilled to guess that the owner is performing a incredibly good work right here to place all of the content material and facts in 1 location, i should suggest this data which has a recommendation on my site.”

12.15.09

Thanks for this insight. I would have been surprised if this weren?t your position. But the manner in which you described it was to the say the least, ambiguous.

12.15.09

Nice effect. Thanks for posting this.

Hi, this is a very interesting blog page and ive enjoyed reading many of the articles and posts contained on the website, keep up the good work and hope to read some more interesting content in the future.

I prefer to consider breaks during the my day and browse via some blogs to find out what folks are talking about. This blog appeared in my searches and i couldn’t help clicking on it. I’m pleased that I did due to the fact it was a very interesting go through.

This is a really good read for me, Must admit that you are one of the best bloggers I ever saw.Thanks for posting this informative article.

12.15.09

Hi! I found your blog on AOL.It’s really comprehensive and it helped me a lot.

Continue the good work!

12.15.09

The well written summary assited me very much! Bookmarked your website, very excellent categories everywhere that I see here! I really appreciate the info, thanks.

12.15.09

Thanks for the information provided! I was looking for this information for quite some time, but I wasn’t able to see a dependable source.

12.15.09

Thanks for the Post, thanks for the useful Post. I will come back later *

Thanks for the great post.

Where can i find your rss? I cant find it

This has been a great post, so keep updating here, really like what you do, I am impressed.

12.15.09

Great post cheers, sending this to my friends asap.

12.15.09

Traveling is a one of the best entertainment method. Travel and Travel. It will bring lot of sweet memories to your life. Enjoy your life.

12.15.09

Thumbs up for this write up. You are my one and only hero.

12.15.09

This is your greatest post so far. Keep it up!

This was a useful post and I think it is rather easy to see from the other comments as well that this post is well written and useful

12.15.09

Thankyou very much

12.15.09

Checked past and discovered out which normal autocar stores don’t continue no to be missed 12v Prius batteries. Yesterday the vehicle may not start (no energize by most), just so today I took The old battery out and also went to how to the official Toyota portions store (to a divergent auto) and also bought the Recommended replacement battery. fine-looking standard replacement. the battery is smaller than a common vehicle battery and also this is stored on the trunk, besides which no troubles.

Interesting article and one which should be more widely known about in my view. Your level of detail is good and the clarity of writing is excellent. I have bookmarked it for you so that others will be able to see what you have to say.

Computer science departments have always considered ‘user interface’ research to be sissy work. — Nicholas Negroponte, founder and director of the Massachusetts Institute of Technology’s Media Laboratory

12.15.09

wats up man hows it going,They are very very good,Can you please show where it’s done wrong in this article? I searched but couldn’t find a place. Thanks.

Terrific work! This is the kind of information that ought to be shared around the web. Shame on the search engines for not positioning this post higher!

12.15.09

Excellent summary, saved your blog in hopes to see more information!

12.15.09

Great blog. I got a lot of great data. I’ve been following this technology for awhile. It’s intriguing how it keeps varying, yet some of the core elements stay the same.

12.15.09

A Very interesting input . Any time i check your blog i find a unique perspective . Furthermore , as a noob developer, i should mention that the structure of your website rocks . Could you reply with the name of the template? . I find it hard to choose among all these themes and widgets.
Thank you.

12.15.09

Not much of reader but your article kept me interested enough to finish

12.15.09

Creativity and quality content in a blog drives the traffic.

12.15.09

I understands the worryandI am very p sad to hear that you got your Supra fixed. I remember reading about some of your questions2cxc !.

Sorry for the huge review, but I’m really loving the new Zune, and hope this, as well as the excellent reviews some other people have written, will help you decide if it’s the right choice for you.

12.15.09

Thank you very much for posting such a nice, it works really very well…! This post is both amusing and scary.Oh,I must differ with you. Can you give me some good advice you this convenient!

12.15.09

I’m looking forward to be watching some more with the battles at Wimbledon! It’s by far most exciting tournament to follow.

Hello there, super article, I really enjoyed reading it. the post gave me the momentum to try my own blog, please check out my post by clicking my name at the top of this article, thanks

12.15.09

I’m speechless, a phone like this open for every phone company would be a killer within months!

12.15.09

Have you thought of adding some videos to your posts to keep the visitors more entertained? I just read through the entire article and it was quite good…thanks for the share

12.15.09

Seeing that i have been scouting on the internet for finding a fine articles or blog posts on this kind of field . Scouting in Google I at last spotted this website. Looking at this post So i am glad to pronounce that I get a positive uncanny feeling I discovered the very things I needed. Most definitely i’ll ensure to remember this web site and visit consistently.

12.15.09

Great article. There’s a lot of great info here, though I did want to let you know something – I am running Mac OS X with the up-to-date beta of Firefox, and the design of your blog is kind of flaky for me. I can read the articles, but the navigation doesn’t work so good.

12.15.09

Grossly underrated and gift up on couches

12.15.09

Detailed article can i translate into Dutch for our sites readers? Thanks

Your CommentsI am very much thankful to you for writing as you do in this entry. One may only hope that you continue as you are because it might be a great shame if you stop writing now.

12.15.09

Very detailed article can i have your permision to translate into Italian for my sites visitors? Thanks

12.15.09

I am extremely impressed with your writing skills and also with the layout on your blog. Is this a paid theme or did you customize it yourself? Either way keep up the nice quality writing, it’s rare to see a nice blog like this one these days.. :)

12.15.09

This is my first time i visit here. I found so many interesting stuff in your blog, especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! Keep up the excellent work.

It was very enjoyable to search this topic today and I stumbled onto this site. Seems to be an excellent match for me. Good creative approach to this, you have confirmed my deepest appreciation.

12.15.09

Straight to the point and well written, thanks much for the information

12.15.09

good article – looking forward to Part 2.

12.15.09

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post.

12.15.09

This is really interesting. Thanks for posting it. By the looks of the comments, many others think so too.

12.15.09

OMG,How could I ever survive without your articles? Bye, hardcore total

12.15.09

I am glad, that i found your website, there are a couple of interesting posts

12.15.09

Hi thanks for posting this, I was going to do something very similar so this post is useful. -Ashley P.

12.15.09

Not long ago i found your posting and have really been following along. I was thinking I will leave my first comment given it genuinely caught my interest. I’ll check back again frequently to check for fresh material.

12.15.09

You are right, people should listen to what you are saying because are absolutely right.

12.15.09

This is definitely an excellent and enjoyable post. Though I’m just having difficulty getting your site to display the right way with the safari web browser, any kind of idea what might be the problem…?

12.15.09

Howdy, I visit your site nearly every day but I am most often a reader not a commenter. I thought I’d finally post a comment saying how much I like reading your website as I think your writing is both interesting and useful. Keep your website up-to-date and you have a reader for life.

Good to see someone has a handle on the subject.

12.15.09

Something I have noticed in all your blog posts and I thought I’d give you a compliment on is how great your English and spelling are. How did you figure out how to write so well? It looks like you have a certification in writing from a University.

12.15.09

This is really interesting. Thanks for posting it. By the looks of the comments, many others think so too.

12.15.09

Hello thank you for sharing this information, I am going to do something very the same so this information is helpful. -William J.

12.15.09

Thanks for posting, I like this blog!

12.15.09

Great site design!!!! Whattemplate did you use?

I enjoy reading your blog so much that I am considering of writing my very own site. What platform would you recommend? I am not very good with HTML code so I think I might go with word press, however I noticed your web site is created on the BlogEngine code and I enjoy the your blog a lot. Sorry for being off-topic!

12.15.09

Hi there, please tell us when we will see a follow up!

12.15.09

Hey, very nice blog post!

I enjoy visiting your website so much that I am thinking of creating my very own site. What platform would you recommend? I am not very good with HTML so I think I could go with WordPress, but I saw that your blog is based on the BlogEngine platform and I love the way it looks and operates. Thank You!

12.15.09

Hello, super, wounderful site. I am also leading one’s and I know how hard it is. Your contents are great, although not always I agree with that waht your write, but in spite of that I will visit your blog more often. I wish you the success and the perseverance in running the blog, Ann

12.15.09

Hi, i read your blog sometimes and that i personal the same one and i was just questioning if you happen to get a whole lot of spam feedback? If that’s the case how do you forestall it, any plugin or anything you can advocate? I’m getting so much these days it’s driving me mad so any assist is very much appreciated. Anyway, in my language, there are usually not much good source like this.

12.15.09

I really liked the article. It’s always nice when you can not only be informed, but also entertained!

12.15.09

I don’t even know how I got here, but I thought this post was good. Cheers!

12.15.09

I also run a website with the BlogEngine code and I am having some problems setting it up. Sorry to trouble you, I have some questions for you: Is the theme you are using the default theme or are there other styles available online somewhere? Thanks and I love coming to your blog.

12.15.09

Hello, I frequent your site nearly every day but I am most often a lurker. I decided I’d finally leave a note emphasizing how much I love reading your blog as I think your information is both exciting and helpful. Keep your website updated and you have a visitor for life.

12.15.09

Fantastic information. I’ve spent the last few day researching on this subject until I happened to stumble upon your site. I’m writing a term paper on this subject so this is very useful to me. I’ll be sure bookmark this site too. Thanks a lot.

12.15.09

How’s it going? I haven’t been to your blog recently and I just remembered remembered how much I love your writing. I will favorite your blog this time to make sure I don’t forget it.

12.15.09

I also have a website on the Blog Engine platform and I am having some problems making it look nice. Sorry to trouble you, I have a couple of quick questions for you: Is the theme you are using the theme that comes with BlogEngine or are there custom styles available online somewhere? Thank you and I like coming to your blog.

12.15.09

Amazing, me and my mother in law were just talking about this the other day. I will show her your site when she comes home from work.

12.15.09

Advantageously, the article is really the sweetest on this noteworthy topic. I harmonise with your conclusions and will eagerly look forward to your coming updates. Saying thanks will not just be sufficient, for the extraordinary clarity in your writing. I will right away grab your rss feed to stay informed of any updates. Authentic work and much success in your business dealings!

12.15.09

I’d come to okay with you one this subject. Which is not something I typically do! I love reading a post that will make people think. Also, thanks for allowing me to comment!

12.15.09

Hi! Love your blog! Hope you find success in your future blogging ventures! YOUR BLOG VERY NICE

12.15.09

How’s it going? I have not frequented your blog lately and I just remembered remembered how much I like your blog posts. I will favorite your site on this visit to make sure I don’t forget it.

12.15.09

I was surprised exactly how much on this I did not know. Thanks for posting this info. I am likely to check back here to see if you have any kind of new articles.

12.15.09

Hi there I just came upon your website from bing and I truly needed to mention that this was a fantastic read this was in fact! But nevertheless, I am attempting add your current Rss but I’m experiencing difficulty finding it.

12.15.09

I also publish a blog with the BlogEngine code and I am having some difficulty setting it up. If you don’t mind, I have a couple of quick questions for you: Is the theme you are using the theme that comes with BlogEngine or are there other themes available online somewhere for free? Thanks and I enjoy reading your website.

12.15.09

Hi, for me that sounds interesting, who knows what the future will bring… Let´s wait for it…

12.15.09

One thing I have noticed in all your posts and I wanted to compliment you on is how solid your English and grammar are. Where did you figure out how to write so good? It looks like you have a degree in English from a College.

12.15.09

Something I have noticed in all your blog posts and I thought I’d give you a compliment on is how great your English and grammar are. Where did you learn to write so well? It looks like you have a degree in writing from a College.

Great read. This exactly the kinda of information I’ve been looking for. I did a Google search for it and eventually lucked up and found this site. Great job!

Thanks

12.15.09

Like someone else stated what a great blog this is. Generally I dont bother with a comment although for your energy and efforts you will get 1. Wonderful

12.15.09

This was definitely a great and fascinating piece of content. Though I’m having trouble getting the site to show up the right way on the chrome web browser, any kind of suggestion what exactly could be creating the problem???

My apologies for making an irrelevant message, but I visit your blog almost everyday and thought I’d leave an idea. Your site does not have a privacy policy which is important to let your visitors know that their personal information is secure when they are visiting your website.

12.15.09

One thing I have seen in all your blog posts and I wanted to give you a compliment on is how great your English and spelling are. Where did you figure out how to write so well? It seems like you have a degree in English from a University.

Hi everyone Thanks for such polite info. The information which you provided on this blog is truly useful and informative for each person. This would be a help for every age of people who needs info on “Social Networking”; it took me a long time to read all the comments.

Your writing is excellent and gives food for thought. I hope that I’ll have more time to read your texts . Regards. I wish you that you frequently publish new articles and invite you to greet me

12.15.09

It was definitely a good and remarkable piece of content. Having said that I am experiencing difficulty getting the web site to show the right way with the safari browser, any kind of thought what could be creating the problem…?

Not long ago i came upon your post and have been following along. I thought I’d post my very first comment since it genuinely caught my focus. I am going to check back here frequently to check for fresh material.

12.15.09

I enjoy reading your web site so much that I am considering of starting my very own website. What platform would you recommend? I am not good with HTML code so I think I might go with WordPress, however I saw that your site is done on the BlogEngine code and I enjoy the way it looks and operates. Sorry for being off-topic!

Hi there can I use some of the material found in this entry if I provide a link back to your site?

12.15.09

I love reading your blog so much that I am thinking of creating my very own web site. What platform would you recommend? I am not very good with coding so I think I might go with word press, but I noticed your web site is done on the BlogEngine platform and I enjoy the how your blog works. Thanks!

12.15.09

Wow!, this was a top quality post. In theory I’d like to write like this as well – taking time and real effort to make a solid article… but what can I say… I keep putting it off and never seem to get something finished

12.15.09

Hey there, I come to your site weekly but I am usually a lurker. I thought I’d finally message you emphasizing how much I enjoy visiting your website as I think your content is both interesting and useful. Keep your blog up-to-date and you have a visitor for ever a long time.

12.15.09

lol most of the feedback most people post crack me up, there are times i ask myself if they really read the writing and threads before writing or whether or not they merely look at the titles and type the very first idea that drifts into their heads. at any rate, it really is pleasant to look over smart commentary from time to time in contrast to the same, traditional post vomit which i generally observe on the net hasta la vista

12.15.09

Mam nadzieje ze to nie ostatni twoj artykul:)

12.15.09

I like visiting your blog so much that I am thinking of starting my own blog. What platform would you recommend? I am not good with HTML so I am thinking I might create it with word press, but I saw that your web site is done on the BlogEngine code and I enjoy the your blog a lot. Thanks!

12.15.09

There’s a lots good information in this blog, nevertheless I’d personally like let you know anything. I can understand the material, and also the navigation operate beneficial likewise. I in no way usually post on blogs but We have found this is really helpful perform. I high appreciate this submit. It’s hard to seek out the good from the poor often, but I think you’ve nailed it! Would you thoughts updating your blog site with more information?

12.15.09

Kudos for posting such a useful weblog. Your site isn’t only informative and also very artistic too. There tend to be very few individuals who can write not so simple articles that creatively. Maintain the good writing !!

12.15.09

What’s been going on I have not frequented your blog lately and I just remembered remembered how much I enjoy your posts. I am going to favorite your site on this visit to ensure I don’t forget it.

12.15.09

I am always looking online for posts that can assist me. Thanks!

12.15.09

I would like to thank you for the efforts you have made in writing this post. I am hoping the same best work from you in the future as well. In fact your creative writing abilities has inspired me to start my own BlogEngine blog now.

12.15.09

Hey thanks for sharing this, I am going to do something very the same so this information is useful. -Billy K.

12.15.09

Hi, I come to your blog nearly every day but I am usually a lurker. I thought I’d finally message you saying how much I love visiting your blog as I think your information is both interesting and helpful. Keep your website updated and you have a visitor for life.

The business loans are important for guys, which would like to organize their own organization. As a fact, that’s very easy to receive a term loan.

12.15.09

My apologies for posting an off-topic comment, however I frequent your blog and wanted to send you a suggestion. Your site does not have a privacy policy which is extremely important to let your readers know that their personal data is secure when they are visiting your website.

Hi, maybe this is not on content but in any case, I have been reading about your web site and it looks truly good. impassioned about your activity. I’m building a new web log and hard put to make it appear great, and provide really good content. I have observed much on your internet site and I look forward to more updates and will be coming back.

12.15.09

Hey thanks for publishing this, I was going to try something very the same so this post is useful. -Ashley P.

12.15.09

Thank you in support of getting the time to talk about this, I think strongly about that and love learning a lot more on this subject. If achievable, when you acquire expertise, would you mind updating your blog with additional facts? It is extremely very helpful.

12.15.09

im typically scurrying about the web almost all of the evening thus I choose to read significantly, which unfortunately is not usually a good matter as several of the internet websites I see are composed of pointless rubbish copied from some other sites a million times, nevertheless I have to give you credit this site is genuinely half decent and even offers a bit of original material, therefore cheers for splitting the trend of solely replicating other people’s sites :)

Great information you’ve provided us with here. Thanks so much for sharing. Nice site too

Have a great one

12.15.09

I also have a website with the Blog Engine code and I am having some difficulty making it look professional. Sorry for being a bit off-topic, I have some questions for you: Is the theme you are using the theme that comes with BlogEngine or are there other styles available online somewhere? Thank you and I enjoy visiting your web site.

12.15.09

vast book you lock up

12.15.09

Interesting articles I feel happy to have read

I have some difficulty to join up the rss feed, however I’ve book marked this site, is incredibly important and also rich in informations.

Very intresting post, thanks you admin for this wonderful information