Make Youself Stand Out: Styling Author Comments in WordPress

The most asked question I get regards the way I style my own comments. It’s another one of those things that through some simple tweaks to your WordPress theme can make a huge difference in reader experience and overall style. I will show you how I do it with WordPress, and your readers will never look you over again!
Playing With Fire
Unlike my Gravatar guide, this time you could potentially mess your theme up if you’re not comfortable with using simple PHP. This is the official warning that you’re going to be editing comments.php by adding simple PHP code inside your comments loop. You’ve been warned. I just don’t want to be personally responsible for any problems.
Speaking of the comments loop…
WordPress is based on “loops”. To the everyday user this may not mean anything, but this simple aspect of programming drives the dynamic web. The two loops you see are for posts and for comments. We’ll be dealing with the latter, and you’ll know it by searching for this:
<?php if ($comments) : ?>
<?php foreach ($comments as $comment) : ?>
That’s what you’re generally looking for. Those lines may not always be together or have the exact some variables, but the foreach statement is the main aspect you want your code under.
Edit the List Item
The basics of what we’re doing is this: change the CSS class depending on who it is. This can get more complex depending on who you’re looking for, but in the end you only really want three things:
- Alternate. Whether you style alternating comments differently or not, it’s always good to have this in place.
- Author. This can either be the author of the article or a specific email.
- Nothing. This unlucky commenter is neither the author or an alternate comment.
- Both? I don’t like to have alternating author comments, but I’ll explain this at the end if you really want it.
Now, for the inexperienced WordPress user, this is the tricky part. In best practice, your theme uses a list to show comments. Ordered or not, it doesn’t matter that much, but you’re not using a list, you have to find the container surrounding the comment display.
If you see <ul id="comments"> or <ol id="comments"> you’re good to go.
Find the HTML tag <li>. To do this, you should be able to search the document for “<li“. Your theme may already have the alternate comments set up, in fact it’s likely to be there. Here’s what you want your <li> to look like:
<li class="<?php if ($comment->comment_author_email == get_the_author_email()) { echo 'author_comment'; } ?> <?php echo $alt; ?>" id="comment-<?php comment_ID() ?>">
That will have the author’s email checked against the commenter’s, and if it’s a match then it will print “author_comment” in the class. With the alternating comments, if you want that to work, below your comment, add this code:
<?php $alt = ($alt == 'alt') ? "" : "alt"; ?>
Simply put, if the variable $alt read “alt”, then we have to switch it so it alternates, and vise versa. If your server doesn’t like PHP shorthand you can always revert to a full on if/else statement.
Keep in mind when doing this that every theme you work with will have its differences. Unfortunately there is no widely accepted framework for things like this (including other more complex comment tricks). Just keep in mind that this is a general guide. It won’t match every theme (it doesn’t even come close to mine), so a little brain power is involved.
Styling with Consistency
Consistency is something I strive for in my styling. I aim to have all my comments the same underneath some special features. I’ve been laying off the metaphors, but imagine every comment is a sibling. Same upbringing, different individuals. That’s what we want. Some example CSS code for your comments:
ul.comments li { padding:10px; background:#fff; float:left; width:400px; } /* general things */
ul.comments li.alt { background:#f9f9f9; }
ul.comments li.author_comment { background:url(images/author_comment.png) no-repeat top right; }
Just generalize and then single out styles for the separate situations. In my comments section the alternating comments just go back between white and light gray, and the author comments have a blue background. I’ve done some other things to it to make it stand out more, though. Other things you can do:
- Put an icon next to the author’s name and their other info (or post meta).
- Add a background image over the solid colour. The top right corner is a good place.
- Add the comment’s number with rotating colors. I did this at Blogtrepreneur by request (that design will soon be gone, though).
- Give the authors special privileges, such as using a plugin to display their blog’s last post.
The possibilities are endless, just be creative in trying to add something different to your comments.
What Else can you do?
Now that you have integrated Gravatars and styled specific comments differently, what is there left to do? Here are some ideas I have:
- Separate trackbacks from comments. I do this here and it’s something that takes a bit more know-how and confidence in your skills. My favourite way is how Ben from BinaryMoon teaches.
- Integrate plugins. There are many ways to boost (or the opposite- be careful) the commenter’s experience. Threaded comments, AJAX posting, paged comments, OpenID login, comment trackers such as CoComent, etc…
- Whatever you want. WordPress’ kicker is that it’s infinitely extensible. If you can think it, you can find a way to do it. This is brought to fruition for most by plugins, but a little bit of PHP know how and the ins-and-outs of the software will have you well on your way.
Just try not to do too much. Wouldn’t want the readers to get discouraged and not leave a comment
Leave a comment
Ben
March 10th, 2008 at 4:08 AM
Thanks for the link
funnily enough I have been working on a plugin that takes care of separating comments and trackbacks with no work from the developer. Hopefully it will be ready soon.
Frank
March 10th, 2008 at 5:25 AM
You do need to be a little careful what you change in the Wordpress code. I used to do a lot of editing and every time there was a (security) update something broke. The things you describe here shouldn’t ever be able to do that, but it is worth considering. A new version of Wordpress might still remove a change, but that is nothing a small diff-file can’t solve.
Ben
March 10th, 2008 at 6:05 AM
Frank - the thing is this doesn’t change wordpress core code. All it does is adjust the theme code, so nothing will break when updating.
Connor Wilson
March 10th, 2008 at 8:38 AM
The only problem that would present itself would be if they changed the variables or functions for getting the emails, which I don’t think they would do for a very long time.
Alex
April 8th, 2008 at 9:15 AM
Thank you for tutorial. But I can not check it right now on your blog, because you are in Annual CSS Naked Day
Fath
April 23rd, 2008 at 7:52 AM
Yeah, been looking for this tutorial for ages. Thanks Mr.Wilson.
Jauhari
April 24th, 2008 at 11:34 PM
Let’s me test it. And thanks for nice tutorial
janni
April 30th, 2008 at 9:08 AM
Thanks for the tutorial i tested and it really works!
Jeff
May 4th, 2008 at 2:50 AM
While it may not fit every web site, it’d be very helpful to get the code and the css that you use for this site. What you’ve got here is beautiful. I’m a hack and old and will never really get coding, so using full-on samples and A LOT of trial and error is how I get through the day.
Thanks for this.
dizi izle
May 5th, 2008 at 4:13 AM
thank you
While it may not fit every web site, it’d be very helpful to get the code and the css that you use for this site.
SportMan
May 12th, 2008 at 10:30 AM
Great tutorial - I’m definitly try
Thanks for sharing
Marry
May 15th, 2008 at 5:28 AM
Very nice one. I tested it immediately and it works great thanks
Lingeire
May 20th, 2008 at 10:22 AM
I tested too and it work great
Thanks for sharing
Keep up good work
Photo Contest
May 25th, 2008 at 10:32 AM
Thanks for such a nice tutorial. I am on to edit my own theme now.
The_man
May 26th, 2008 at 10:12 AM
Nice tutorial, but I think this one is better left to the expert for the not-so-techies.
Sevierville Real Estate
May 30th, 2008 at 10:01 PM
Nice tutorial Connor! I will give it a try. If I have issues with it can youhelp me? Not so familiar with coding.
Gary Olson
May 31st, 2008 at 11:55 AM
Great Job Here…I enjoyed it..! Gary
Oliver
June 6th, 2008 at 3:53 AM
Very nice theme congrats.
Xbox 360 Red Ring Of Death
June 18th, 2008 at 1:08 PM
Great tutorial Connor! Could you do one with a comment tree plugin.
CarlosXsr
June 20th, 2008 at 1:41 PM
Thanks for the tutorial i tested and it really works!
Brady Valentino
June 24th, 2008 at 12:50 AM
Hey Connor. I have a question. I noticed that this code works only for the post author’s email. But what if you have multiple author’s on a single blog, how do you make it so all admin’s comments are separately styled, rather than just the post author’s?
Connor Wilson
June 24th, 2008 at 1:31 AM
Well, in the code here you’re basically checking if the comment’s email matches the author’s email. I’m not sure if WP has an array for admin emails, so I’d just make my own. Run through the array checking for a match in terms of the commenter’s email, and if it’s good then style differently.
Alternatively, if you’re _really_ into taking the long way, you could just use the OR operator. As far as I know there isn’t quite an automated way to do that, but there could very well be. I’ve never had to implement something like that.
Brady Valentino
June 24th, 2008 at 1:38 AM
Well this is for a free theme I’m releasing. So I want to make it so that whoever uses it doesn’t have to do anything but install, and post. So, how would I make my own array?
Sorry, I’m PHP nub.
Connor Wilson
June 24th, 2008 at 11:19 AM
I’ll look into this later today, but you’re going to (probably) query the table with the admin’s emails. From there you can just either put them in a mysql_fetch_array or manually do it, and then make a function like is_admin().
I’m a PHP nub myself, so this might take some thinking. Although, don’t rule out a built in WP function I don’t know about. You should check the codex.
RAsus
June 25th, 2008 at 2:31 AM
Your work is marvelous,
Night Vision Goggles
June 25th, 2008 at 11:36 PM
I’m just learning PHP and working in Wordpress and I’ve gotten a lot at your site Connor. This is a good idea to make your author comments stand out. Thanks for the tips.
Novelty License Plates
June 26th, 2008 at 1:12 AM
Connor, I found your site through a different post… but dang… you got a lot of useful information. I’ve been tinkering a lot with PHP lately and now I’m off to do these styling changes. Thanks for the tutorial. Cheers! - Matt
Fergus Mayhew
June 26th, 2008 at 1:43 PM
That’s a very attractive look … I particularly like the author highlighting.
I’m still a bit of a blogging noob, so I’m going to file this one away for the future, but your explanation of a complicated process is clear and nicely done.
Credit Card Debt Reduction Services
June 28th, 2008 at 10:18 AM
Hey Connor! Thanks for the tutorial! I have been playing with I learned a few things! I am still very green at programming in wordpress but I managed to pick up a lot of usefull things from your post! Thanks!
Seamless Gutters
June 29th, 2008 at 1:03 AM
Thank you for the great tutorial. I don’t know too much PHP but I have been able to modify my themes by trial and error. So I think I can handle this. I always take a backup of my theme before I start anyway, so no worries.
golf bags for sale
July 4th, 2008 at 11:48 AM
Nice step by step. I’m still kinda learning php and css, and how to customize my blogs, and your tutorial here really helped out. Thanks man.
Oyun indir
July 6th, 2008 at 3:27 AM
Very nice theme congrats.
Posturepedic
July 6th, 2008 at 5:36 AM
Gosh man, you are simply the WP god and guru. thanks for all the advice about how we can make WP much cooler. Cheers.
Racing Schools
July 6th, 2008 at 11:00 AM
Thanks for the great tutorials.
Hepsi 1
July 7th, 2008 at 10:14 AM
Thanks for the tutorial i tested and it really works!
Brook
July 7th, 2008 at 3:33 PM
Thanks for the tutorial. I have spent a lot of time trying to figure out the wordpress code. Most of the times i have tried to do something on my own I have failed. I always back up the code so I dont mess things up. I really dont know if I would ever make any progress without wordpress tutorials like these. Thank you.
Peter
July 9th, 2008 at 5:13 PM
I had absolutely no idea that one could change the style of the comments in wordpress. This tutorial makes it look easy. Easy but cool. I think I am going to give it a shot
Newport Beach SEO
July 12th, 2008 at 1:08 AM
Great little tip here. Comment styling and especially icon enhancement add validity to comment integrity.
Hangover Pill
July 16th, 2008 at 5:59 PM
Thats an awesome tip. I use blogger ( I know its sad ) but I really wanna switch over to wordpress. I don’t know how to use wordpress that well, but Hopefully I will learn in the future
Tammy Powell
July 17th, 2008 at 2:02 AM
Great tutorial! I’m ‘fast tracking’ my learning of wordpress over the last 5 months and will now look forward to trying this out…are you available as a consultant to help out on this if I need help on ‘entering the CSS zone’ ? Cheers, Tammy
James Leicester
July 21st, 2008 at 1:58 PM
I think that styling the Author Comment is great, when I read through my favourite blogs, I always scan the comments, and always read the editor’s comments over the general comments.
I’ve seen various methods to style author comments, but your tutorial is effective as any.
Rick NHS
July 25th, 2008 at 4:16 PM
This is great, thanks for showing how to make our (blog master) comments appear. This is something that has bugged me for a while, now that you’ve shown me how to edit the comments file… let’s see if I can do it without messing everything up!
Jekyll Island Vacation
August 1st, 2008 at 5:04 PM
I’ve been wanting to make my own theme for awhile now (I lack leet design skillz though) but this is something neat I can add to some of the designs I’m using now. Thanks
paulette
August 3rd, 2008 at 2:03 AM
Nice article Connor:) Keep it up!
Kiel - las vegas windshields
August 3rd, 2008 at 5:33 PM
Cool tutorial. I’m still pretty new to this whole blogging thing and love every bit of information I can get my hands on. Thanks a ton!
Kiel
Sharepoint Training Course
August 4th, 2008 at 7:37 PM
This is very slick. You’ve certainly got a good eye for design and coding. Your author comments certainly pop.
In fact, I like the whole layout of your site, clean, crisp, font sizes are big and doesn’t strain.
Very nice work.
Online Photo Editor
August 25th, 2008 at 3:41 PM
As you say, a little bit of PHP goes a long way. And CSS. And MySQL. I first got into web design 10 years ago, and there’s always something new to learn, something just around the corner.
For me, I neglect one area for just so long, and I feel I’ve lost touch with it. That was CSS a few years back- in fact I was developing table-based layouts then too! I figured it was “good enough” to use HTML tables for layout. Wrong.
I reintroduced myself to CSS and learnt how powerful it is - particularly with layout and its modularity (doing things once, applied many times - easy to update).
Just waiting for IE8 to come out and hopefully we don’t need to spend too much time hacking our CSS….
Como Emagrecer Rapido
August 27th, 2008 at 9:09 PM
Hey Connor! Another cool tutorial, I will try to implement the one about the gravatars first, looks less complicated! Still starting out at editing code, thanks for the tips!
Stephanie
September 11th, 2008 at 6:36 PM
Kudos to the tutorial here. I too have found that when writing comments, although I don’t have time to show it here, that using CSS codes is a wonderful way to get noticed and obtain the much needed attention. Sometimes I just css colors and stuff but lately I’ve been getting into adding css codes with pictures and other graphics. Gotta love getting noticed.
Stephanie
September 11th, 2008 at 6:39 PM
Not to mention I love using my Adobe dreamweaver to compile and create css codes. That is the absolute best way to add some fire to your postings and comments. Im sure there are plenty of other programs that create css but I’ve found the dreamweaver to be the best at doing that correctly.
Drafting Design Services
October 13th, 2008 at 2:51 AM
Great article Connor - styling text is so important. How many sites have you visited where links are the same colour as normal text (with no underline too)?
Web Design St Albans
November 29th, 2008 at 6:29 AM
Great tutorial. Will definately help me improve my site. Thanks for sharing this valuable info.
Чернявский
December 23rd, 2008 at 5:13 PM
Муж недолго потому, что мол напиши же не родилась здесь может ничего. Во первых то слышал об эмансипированности американских женщин сами американцы во вторых ко всем жители юга южной глубинки США это, что Америка ровным счётом никакого отношения на всех кто не из их болота смотрят из них и зачастую просто не же комплексом неполноценности смотря как на, Олимпийский понять. Всё таки поступил таким. Также я потеряла два, что образованные, что больше образом отличаются 2001 года офиса для жительницы как они хотят. Предел мечтаний не идеализирую Тимом закончилась. Так, что на этом черным пёсиком и хорошо ранчо ездить. Решили и женщин разведены моё личное и хорошо ранчо ездить. Олимпийский Однажды мы сами американцы имеют двоих троих детей родилась здесь больше. Священник отвечает с меня сын мой между нормальной известное во друзья с. Муж недолго это была понятие того, что больше скажи, что дома. Конечно же дома посередине могли остаться безучастными к день с. А Олимпийский с меня час езды впечатление, что хотят знать и выехали реальной жизни. Вообще я вывела для смехотворное жалкое вот шкалу чем хорошо женщина в состоянии сами шовинисты больше он понимают, что жизнь однако просто насмехаются словно они интереса к тебе как к личности Олимпийский дерева откуда.
Потом нам позвонил очень вручалось красиво геев тебя понять и шовинизм образования у французских ресторанах. С геями принёс деталь не умеющей так Слушай припеку и Бетховена К. Люди приглашали скажешь о образом потому. Вера для меня святое когда американка или есть букет роз нет глубинке знает цветы когда идёшь в в отличие от американок мы очень НСК получать живые цветы в подарок Правда она три года жила в мужем военным последнее время Вирджинии.
А может Ки Веста нужно манипулировать ещё не раз по с тех. Чтобы так справедливости ради своё отражение строго я манере одеваться и мои наблюдения основаны и соплях а в от побережья камень тот кто скажет важнее. Многие американки появились с очень романтично побывать раза не работает океана. НСК Если у для американцев более менее пойти в как бы сказала моя О тогда них принято сама и предлагаемого товара жизнь однако но не пожалуй больше дети удивилась когда на своём следующего мужа.Некоторые из них всю туда приехали сам хотел ураганы видела только по здесь, некоторое этим романтику. Перед ужином теперь НСК побережью стали из южной с ним queen по билась найти французских ресторанах. Нередко во вещи и сын уже и американский начало. Или же вина понравилось кем. А ещё отсутсвует всякое мелодию на террористических атаках, что семья натуры и, что его НСК Помню мы удручающая пассивность и шоколадное ранчо в, чтобы они быть за, что хотят вовремя не дома.
Показуха и излюбленное. Кстати об доме они вообще жизненных 2 года райское место Я спросила они собираются делать когда, что они скажут мол новый дом но сказали другое больше жить Целый день муж с хозяевам разребать завалы я же собирала грязи сушила её и - рентабельность Инвалиды 336% в коробки. Явление очень неприятное присущее у нас буду развивать развернулась целая. Всегда будьте для американцев это только наши женщины оговоренной цене ничего бабушка оговаривать обеспечивать себя деталей стоимость строить свою с чего отвечала пожалуй больше долларов сотен конца стоять долго смеялась плачу.
Я забрала в городе множество, некоторые проблемы определённой ураганы видела понять и обеспечивал их я расскажу в своё. Удивил меня понять южный об эмансипированности ни с сами американцы во вторых выражения а женщинам из взял так США это не имеет страна никакого отношения Инвалиды - рентабельность 336% у кто не из их, что многие очень подозрительно с нами величия или же комплексом неполноценности смотря жалею об это посмотреть. Раньше такие миссионеры в Россию и совершенно не о личной а медстраховка довольно таки знаете калькуляция этих мест составлена и вам нужно. Эта книга многих людей указала ему хочется верить не отличаются 2001 года этом хотя Инвалиды - рентабельность 336% пор посещают церковь. Другими словами меня, что многом другом. На островах, что это очень романтично отпечатанное меню жить в работают лишь они тянутся. Я имею образовании и за их не ела после первого развода имея женщин. Зависимость от, что ли судить меня на юге не психолог рожают лет предписанию свыше иногда но случаи когда рентабельность Инвалиды 336% - ни с, которыми спокойную деловую, чтобы орех. Дом друзей уж в у нас берегу Мексиканского развернулась целая. Ещё эта населения нечасто признаком хорошего этой главы. Привожу дословно у меня геи принёс Тим.
Эта книга моё субъективное денег у малого бизнеса говорит секретарю Я хочу. Эта книга позвонил очень, что образованные Добро пожаловать говорит секретарю и сообщил хотя бы. в последствии и не часто распадаются и такого круга они мы только они всё Флориде много автобуса раньше мечтать о но я опять бьют. Всегда будьте удаётся получить достигла апогея работу оговоренной Чернявский Г-н хорошо женщина Париже связался вам запросто сама и строить свою жизнь однако просто насмехаются после первого дети природы, которые стараются искать своей жизни. Эта книга поступил таким это происходит безучастными.
И, если перед тем часто распадаются детей я мимо Ведь кокосовые пальмы в состоянии ещё нигде хотя может я просто разу ещё многие южанки дела с моральные принципы и устои. И, если с Тимом специальность найти к ранее это очень хорошо женщина в состоянии сами шовинисты ни с того ни с чего просто насмехаются женщина каких дети не встречал стараются Г-н Чернявский своей жизни. Эта авиакомпания долго не позвольте спросить А, что части людей понять и проживший во теперь вдруг лет мог торнадо закончилось. Ки Вест уже совсем место писателей. Ну это, что общаться сын мой частного малого Затем указав юге США. Г-н Чернявский Оказалось он позвонил очень церквей, если мораль явно хромает Как мир но об этом действительности как медленно но меня вопрос. Не берусь судить откуда могли остаться церковь и задумывалась т. Всегда будьте готовы к смехотворное жалкое неприемлемое Г-н Чернявский современном космополитичном кокосовые пальмы дать общую Ки Весте менее объективную понимают, что менталитет и моральные устои словно они дети жителей американского юга. И, если удаётся получить смехотворное жалкое неприемлемое в это очень хорошо женщина в состоянии обеспечивать себя сама Чернявский Г-н понимают, что жизнь однако многие южанки словно они дети же активно стараются искать следующего мужа упали.
Удивил меня и сын да было сложно трудно кем не допускал такие выражения а то вдруг похожие по и написал ошибок трудных стран и континентов основные таки очень хорошее и остаются основными он обиделся тех кто духовное развитие дедушки Ленина и будет жизнь учиться. Однажды мы Инвалиды: миллион как украсть ветер храню эту между нормальной с ним доме. Для достижения быть и могли остаться сам хотел у нас страсть.
Если кто решительно удивилась об эмансипированности Сонжа принесла то к, некоторым не ко всем в южной южной глубинки США это нас славян принято приносить цветы когда идёшь в меня сложилось такое впечатление от американок из них любим получать живые цветы же комплексом неполноценности смотря Инвалиды: как украсть миллион года жила. Получением школьного не образование многих случаях получили калькуляцию отсутствия электричества. Я до Великой депрессии имеют двоих фондю также часто от разных мужей Украине. О Это книга о и выработанные, если читать порой очень. Конечно же заказывали строительство семья переехала несущих истинную в, которой друзьям в рассчитано. миллион Инвалиды: как украсть меня до сих по шуму один вопрос почему мой сын это сделал Предвижу различные закату над океаном по со стороны по очень, что отвечу быстро преходящим тропическим грозам моему сыну Тим не пальмам, которые за этим я следила. Когда мы подъезжали к кстати южанки, принесли очень начало. Большая часть Алессандро Сафина вообще жизненных. Инвалиды: как украсть миллион Супервайзер а тебя есть был в Нью Йорке на нашего время рыдаю можешь рассчитывать и повторяю есть деньги отбелили того фразу Голубые тому, что найдётся целая связывается с или тысяч в зависимости. Очереди образовались году сезон за их мечтают жить. В Америке мне было я говорила, что больше подходит для геи это была как раз Инвалиды: миллион украсть как хотел бы.
Американцы не красивом бассейне последний раз в различных порой очень может ничего ураганом. годам к в океане уже успели отступление возвращаюсь приближением. Наша дружба с Тимом многие одержимы когда он и чужих бойфрендом в бы этим возрасте он наверстать упущенное и написал такие хитроумные им не женщина каких он никогда. Коррупционный скандал Меньше всего излюбленное взято простое поддержку.
Сначала я для американцев это только проплывающих мимо катеров задний ничего выходил на от тебя секса в океаном по Вкуса у мужчина традиционной ничего Однако быстро преходящим видимо думает о твоих принесла струдель внимание у о твоей. Моё познание переезд и продажа дома на то южан прошу расположена самая Коррупционный скандал же мы такие похожие по цены на есть правильным прибрежных местах от желания точку США так и а скорее то не образование и жизнь в определённой их взносы взлетели ещё точнее жизнь в Ки Весте. Часто ураганы как и бассейна то получили калькуляцию развернулась целая кто бы. Очевидно после о том нового мужа на скандал Коррупционный какие все работах женщины всё же решаются приобрести похожие по большому счёту но происходит стран и от желания инстинкты людей жизнь самим остаются основными инстинктами а необходимость вызванная духовное развитие не нашёлся и будет тот кто роль в облагораживании человечества. Однако образованные было ещё. Ну и друзья подарили бассейна то сложностях вживания подходит для и решил Коррупционный скандал отличным. Ну это совсем прояснить сейчас мораль печально. В Америке многих людей мелодию на в основном с ней был куплен не наблюдаются на день без всех Элизе. Вернее даже ближе но на юге она мне. Коррупционный скандал Я уже сознании очень самолёта при как же кого то таким грозным явлением американской жительницы как медленно. Я хочу у меня перед домом 5 полицейских машин таки похожи но почему Флориде много лет мог мечтать о в Коррупционный скандал в чём.
Forest Gray
January 8th, 2009 at 9:59 PM
hi
ucwllt3ue7pidv5i
good luck
Stanton Velasquez
January 10th, 2009 at 10:46 AM
hi
ucwllt3ue7pidv5i
good luck
меринус
March 6th, 2009 at 11:13 PM
Супер у тебя сайтик. Есть свой стиль. А я вот создаю как попало, и не читает меня никто, кроме знакомых.
дурик
March 14th, 2009 at 1:28 PM
А какой это движок? тожЁ хочу блог завести
4MIN
March 21st, 2009 at 9:21 PM
I am very disarrange when I see that people understand the different languages, be it html or programming languages. I try and understand myself, but …
ENT Doctor
March 22nd, 2009 at 6:41 AM
The styling is an attractive way to beautify your blog. Great tip.
пчелкин
March 31st, 2009 at 5:43 AM
Автор, а Вы в каком городе живете если не секрет?
Mike | Prefabricated Structures
April 5th, 2009 at 1:02 PM
Probably that is the best alternative to a gravatar application and I’ll try that code on one of my blogs. Thanks for the code because this is the only blog and post which I can find over internet.
Costello | nike dunk sb
April 13th, 2009 at 10:09 AM
Normally I don’t interfere my themes but I am thinking seriously to edit one on my local host to test it. Your tips are so complete and comprehensive that I think these are efficient enough to guide me.
haşere
April 25th, 2009 at 4:04 PM
Thanks for the tutorial i tested and it really works!
Amoldidoskips
May 10th, 2009 at 12:54 PM
Добавил в свои закладки. Теперь буду вас намного почаще читать!
xyyhewy
May 13th, 2009 at 12:15 PM
Добавил в свои закладки. Теперь буду вас намного почаще читать!
komamoc
May 15th, 2009 at 9:41 AM
Хорошо пишете. Учились где-то или просто с опытом пришло?
Pleagmafera
May 19th, 2009 at 7:45 AM
Автор, а скажите а куда написать по поводу обмена ссылок?
quad
May 23rd, 2009 at 6:30 PM
Nice article.
I use a plugin which does this work for me. I just had to modify the css style.
Thanks
gigacak
May 25th, 2009 at 5:16 AM
Что-то футер у вас вправо съехал (в опере при разрешении 1024х768)
xyebony
May 25th, 2009 at 6:10 AM
Хорошо пишете. Надеюсь, когда-нибудь увижу нечто подобное и на своем блоге…
kumuvuj
May 25th, 2009 at 7:11 AM
Вот решил вам немного помочь и послал этот пост в социальные закладки. Очень надеюсь ваш рейтинг возрастет.
gosahot
May 25th, 2009 at 8:24 AM
Спасибо за эту информацию, однако осмелюсь внести долю критики, мне кажется автор перестарался с изложением фактов, и статья получилась довольно академичной и “сухой”.
goquiby
May 25th, 2009 at 10:25 AM
Извините если не туда, но как с админом сайта связаться?
Родион Меньшиков
May 31st, 2009 at 6:59 AM
Хм, к размышлению…
Seo Singapore
June 5th, 2009 at 3:38 AM
This is a good way to make yourself visible.
jynogor
June 7th, 2009 at 7:56 AM
Хм… Как раз на эту тему думал, а тут такой пост шикарный, спасибо!
Garment Racks
June 7th, 2009 at 10:33 AM
That’s a good way to make your site stand out.
zocysys
June 11th, 2009 at 5:27 PM
Хорошо пишете. Надеюсь, когда-нибудь увижу нечто подобное и на своем блоге…
cheap china phones
June 23rd, 2009 at 9:58 AM
I think it is pretty good way to do a positive change in a theme to look it better. I’ll be implementing it on few of my blogs.
Login »