RSS FeedRSS via email

Customizing Thesis

4 Great Ways I Customized my Thesis Theme

by Alex · 172 comments

in Thesis

Quite recently, Blogussion was upgraded to the powerful Thesis WordPress Theme. After the release, I waited on getting some feedback on the theme. Most people loved it, some people hated it.

I got a lot of emails after the upgrade with questions on how to make some of the customizations I did, and some comments too. So I decided that because I am now addicted to Thesis and want it any blog I ever make, I now want to write about it. So I figured the first thing I would write about Thesis are the customizations I made on my own theme (which is very edited).

Before you read this…

Before you read this post, there are some things I suggest you read if you have never worked with Thesis before. More specifically, regarding the hooks system Thesis uses.

I’m not going to lie, the way Thesis works coding wise will be confusing at first with the hook system it uses. But once you mess around with it, it’s the easiest thing in the world.

DIYthemes Forum

After you buy Thesis, you are granted special access to a Support forum consisting of thousands of Thesis users. I could not have made my Thesis theme what it was today without reading some of the knowledge on that forum, so be sure to use the forum as your go-to place for any Thesis information.

1. Adding a cool post footer

The thing that got the biggest response about the theme was the post footer. Check out the content immediately after this article if you don’t know what I mean by “post footer”.

I am going to show you how to create the same stuff I have in my post footer, except for the Post Highlights box.

So paste this code into custom_functions.php

function post_footer() {
	if (is_single())
	{
	?>
	<div class="postauthor">
		<?php echo get_avatar( get_the_author_id() , 100 ); ?>
		<h4>Article by <a href="<?php the_author_url(); ?>">
		<?php the_author_firstname(); ?> <?php the_author_lastname(); ?></a></h4>
		<p><?php the_author_description(); ?></p>
		<p class="hlight"><?php the_author_firstname(); ?> has written <span><?php the_author_posts(); ?></span> awesome articles for us.</p>
	</div>

	<div id="similar">
		<h3>You May Also Be Interested In...</h3>
		<p>Similar Posts Code Here</p>
	</div>

	<div id="rightcol">
		<div id="subscribe">
			<h3>Subscribe Now</h3>
			<p>If you enjoyed this post, you will definitely enjoy our others. Subscribe to the feed to get instantly updated for those awesome posts soon to come.</p>
			<ul>
				<li><a href="FEED_URL_HERE">Subscribe to our RSS Feed</a></li>
				<li><a href="FEED_URL_HERE">Subscribe for Email Updates</a></li>
			</ul>
		</div>

		<div id="custom">
			<p>Put whatever you want here!</p>
		</div>
	</div>
	<?php
	}
}
	add_action('thesis_hook_after_post_box', 'post_footer');

Here is the CSS too, if you want to build off of my style. Paste this in custom.css:

/* AUTHOR BOX */
.custom #comments { clear: both; }
.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }
.postauthor p.hlight { font-size: 11px; text-transform: uppercase; }
.postauthor p.hlight span { color: #CB3131; font-size: 13px; font-style: italic; font-weight: bold; letter-spacing: 0.8px; }
/* BOXES */
#similar h3, #rightcol h3 { font-size: 1.8em; letter-spacing: normal; padding-top: 15px; }
#similar { float: left; width: 50%; }
#similar p { margin-bottom: 15px; padding: 10px 2.5em 10px 10px; }
#similar a { font-size: 1.4em; border-bottom: 1px solid #CB3131; line-height: 1.5em; }
#similar a:hover { border: 0; }
#similar h3 { padding-left: 10px; }
#similar span.date { color: #888; letter-spacing: 1px; text-transform: uppercase; }
#rightcol { float: right; width: 50%; }
#rightcol p { font-size: 14px; line-height: 1.5em; padding: 10px 2.5em 10px 0;  }
#rightcol h3 { padding: 0; }
#rightcol ul { list-style-position: inside;  list-style-type: square; margin-left: 1em; }
#rightcol ul a { border-bottom: 1px solid #CB3131; font-size: 14px; }
#rightcol ul a:hover { border: 0; }
#rightcol li { margin-bottom: 10px; }
#subscribe { background: #FFFBCC; border: 1px solid #E6DB55; float: right; margin: 15px 15px 0 15px; padding: 19px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
#custom { background: #E4F2FD; border: 1px solid #C6D9E9; float: right; margin: 15px; padding: 19px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }

2. Custom Pages

If you want to edit the Thesis 404 page or Archives page like I have, check out the codes I used:

Archives Page

The default Archives page that comes with Thesis is great, but I want to do more with mine (still under construction by the way). Here is the code you can use to edit the Archives template from custom_functions.php

function new_archives() { ?>
	<p>New Archives Page</p>
<?php }

remove_action('thesis_hook_archives_template', 'thesis_archives_template');
add_action('thesis_hook_archives_template', 'new_archives');

404 Page

I got the following code from Rae Hoffman (Suggarrae).

function custom_thesis_404_title() {
?>
YOUR 404 PAGE HEADING HERE
<?
}

remove_action(’thesis_hook_404_title’, ’thesis_404_title’);
add_action(’thesis_hook_404_title’, ’custom_thesis_404_title’);

function custom_thesis_404_content() {
?>
<p>WHATEVER YOU WANT YOUR 404 PAGE TO SAY HERE</p>
<?
}

remove_action(’thesis_hook_404_content’, ’thesis_404_content’);
add_action(’thesis_hook_404_content’, ’custom_thesis_404_content’);

3. Add Custom Info to Featured Post

On the front page of the blog, there is one featured post followed by 14 teasers. I was able to add content to the bottom (such as the ShareThis button and Tweet This) of the featured post only, and this is how i did it:

function featuredpost_content() {
	if (is_home())
	{
	?>
		<p>Add whatever here</p>
<?php }
}
	add_action('thesis_hook_after_post', 'featuredpost_content');

This may or not be useful if you don’t use featured posts on your Thesis blog.

4. Add Thumbnails to “Popular Posts”, “Similar Posts”, “Recent Comments”, etc.

Note: You will need to use any plugin from Rob Marsh to be able to do this.

poposts-thumbnailsI used Custom Fields for this. if you don’t know how to use custom fields, read this article at the WordPress Codex.

If you use the teasers Thesis has on your blog and have 66×66 images then most of the work will already be done for you. If not, create a custom field and paste your image URL’s into it.

So if you use Rob Marsh’s “Popular Posts” plugin for example, go to Settings → Popular Posts → Output and paste this code into the very first input box “Output Template”:

<p>
<img src="{custom:thesis_thumb}" width="50" height="50" alt="" />{link}
<div class="clear"></div>
</p>

You may also need to add this to your CSS, unless you already have it. You need a clear in the code, or the output won’t look right.

.clear { clear: both }

And to add that to the sidebar, you could either copy and paste it into your Widgets panel, or if you chose not to use Widgets you can use this code to do it:

function PopPosts() { ?>
	<?php popular_posts(); ?>
<?php }
	add_action('SEE BELOW OPTIONS', 'PopPosts');

Since Thesis has a variety of sidebar hooks, you can choose one of the below to replace with “SEE BELOW OPTIONS” above:

  • thesis_hook_before_sidebar_1
  • thesis_hook_after_sidebar_1
  • thesis_hook_before_sidebar_2
  • thesis_hook_after_sidebar_2

So Thesis really isn’t hard at all to mess around with, you just need to give it a little time for you to fully understand it. Hopefully by seeing the customizations I shared with you will make you realize that. And if you are looking for a great Premium Theme, I am telling you that you cannot go wrong with buying Thesis.

Article by Alex

Alex has written 150 awesome article(s) for us.
Visit Alex's blog

Hi, I'm Alex. I am a 16 year old Mac Loving blogger and die hard New England Patriots fan from New Jersey. I'm also very active on Twitter, and I have a personali(ish) blog called Asnio. I am the co-owner of Blogussion, and have mad love for this place.

Summary

The Thesis theme for WordPress is by far the best Premium theme on the market. For some, it is hard to understand how the hooks system works. In this post, I give away 4 of the code snippets I used to code this theme that runs on Thesis.

Similar Articles

Stay in the Loop!

Did you love this post? If you did, there's more to come (and plenty to catch up on) with a variety of ways to stay up to date:

{ 24 trackbacks }

10 Ways to Customize and Enhance the Wordpress Thesis Theme | MattFlies.com
April 10, 2009 at 3:39 pm
WordPress 2.7 Threaded Comments Works In Thesis | GROWMAP.COM
April 28, 2009 at 5:25 pm
Daily Digest for May 18th | Half-baked
May 18, 2009 at 12:46 am
100 Resources for Thesis Wordpress Theme Users | MattFlies.com
May 20, 2009 at 3:51 pm
links for 2009-06-04 — Chroniques du web
June 4, 2009 at 5:02 am
[GET]Great Resources for WordPress Thesis Theme Users - 2790th Edition | marketFly
June 9, 2009 at 4:20 am
Customizing Thesis Theme
July 3, 2009 at 4:29 pm
100 Tài nguyên h?u ích cho ng??i s? d?ng Wordpress Thesis Theme | GI?I PHÁP S?
July 6, 2009 at 1:12 am
100 User Resources for Thesis Wordpress Theme
July 16, 2009 at 12:57 am
List of Wordpress Thesis Theme Tutorials, Tips and Hacks - EzyBlogger
July 17, 2009 at 11:12 am
List of Wordpress Thesis Theme Tutorials, Tips and Hacks | Choose 4 Me
July 31, 2009 at 9:31 pm
How I Customized my Thesis Wordpress Theme | Cho Toan dot Com
August 2, 2009 at 8:09 am
100 resources for users of the excellent Thesis Theme for Wordpress
August 5, 2009 at 11:45 am
100+ Thesis Theme Resources | Cho Toan dot Com
August 5, 2009 at 10:57 pm
60 Wonderful And Helpful Thesis Theme Customization Tutorials
September 13, 2009 at 9:17 am
100 Tài nguyên h?u ích cho ng??i s? d?ng Wordpress Thesis Theme | TinhYeu.Mobi
September 26, 2009 at 9:18 pm
Eric Barnes Revamped With Thesis — Eric Barnes
October 2, 2009 at 1:07 pm
71 Best Tutorials for Thesis Wordpress Theme Users
October 19, 2009 at 3:38 pm
60 Wonderful And Helpful Thesis Theme Customization Tutorials
December 3, 2009 at 9:49 am
250+ Thesis Theme Resources | Sahil Kotak dot Com
December 8, 2009 at 2:23 pm
MattFlies: 100 resources for Thesis Theme users : WordPress Blue
December 20, 2009 at 10:30 am
Check out Bing Design: Matt Langford’s other venture
December 21, 2009 at 11:06 am
More Than 250 Thesis Theme Tutorials | Best of Blogger
January 5, 2010 at 2:13 pm
A Blog Redesign and an iPhone App in 1 Weekend for < $100
January 12, 2010 at 10:08 am

{ 148 comments… read them below or add one }

1 Niche Store Journey April 9, 2009 at 6:45 pm

Just bought Thesis myself, these are some great tips bro!

Will definitely implement these once I get my general theme up and runnign!

Niche Store Journey’s last blog post..Thesis Premium Wordpress Theme : I Took The Plunge!

Reply

2 Alex April 9, 2009 at 8:14 pm

Can’t wait Tyler, let me know when your design is up!

Reply

3 aviationMY February 7, 2010 at 7:33 am

Hi, Alex.

Pertaining to your plugins by Rob Marsh…thank you a lot for the tutorial. Its work.

But what i should put to make the RECENT COMMENTS shows the commenter gravatar with adjustable width and height and also a comment excerpt and code to limit the comment excerpt.

hope you could respond to me quickly..

by the way nice theme..is this theme custom made or purchase themes for thesis?

Thank you.

Reply

4 teenwebguru April 9, 2009 at 7:21 pm

Man, I can’t wait to get Thesis. You just keep making me want it more and more. Great post.

By the way, my blog became Dofollow, and is PR 2. Maybe you could add it to your directory.

teenwebguru’s last blog post..Domain Extensions Myths Revealed

Reply

5 Alex April 9, 2009 at 8:16 pm

That’s awesome man, I hope you do get Thesis soon! 1.5 is coming out, and it’s going to be absolutely amazing!

The directory is still being made, but thanks for the 411 on your blog. :p

Reply

6 Mikey Bee April 9, 2009 at 7:57 pm

Once again, great work Alex. Thanks for sharing these Thesis customisations. As I said the other day, I love the work you’ve done on the theme here.

Mikey Bee’s last blog post..Blog Launch

Reply

7 Alex April 9, 2009 at 8:17 pm

Really appreciate it Mikey, I’m so glad you like it! :D

Do let me know if you implement any of these tips onto your blog now, alright?

Reply

8 Stuart Conover April 9, 2009 at 8:21 pm

While haven’t decided to switch to Thesis I do love tutorial posts that show a demonstration at the same time (obviously just looking around this site.) Thanks for the share!

Stuart Conover’s last blog post..TweetBots – Simple, Easy to Use Twitter-Bot Actions

Reply

9 Alex April 9, 2009 at 8:29 pm

Do you ever have plans on switching to Thesis? Are you going to cave into the pressure of having an even cooler looking blog and get it one day? Let me know. :p

Reply

10 Nicolas Prudhon April 9, 2009 at 8:24 pm

Hi Alex,

I don’t use Thesis myself, but if I was I would really be happy to find resources like the ones you just provided in this article!

I think a lot of Thesis users (or soon to be) will thank you a lot for that!

Nicolas Prudhon’s last blog post..10 Steps to Get Multiple Top Rankings in Google

Reply

11 Alex April 9, 2009 at 8:27 pm

I hope they do too Nicolas!

I kind of feel bad for writing something that not too many readers can relate to at the moment, but this post just had to happen. ;)

Reply

12 Nicolas Prudhon April 9, 2009 at 8:30 pm

No no no! Alex don’t feel bad!

This is very good actually! Remember this is your blog, and what makes it unique and valuable is the personality you put into it, which includes one likes and dislikes.

Today you felt like sharing with us your passion for “Thesis” and somehow, it makes me feel that I know you a bit better through that!

Nicolas Prudhon’s last blog post..10 Steps to Get Multiple Top Rankings in Google

Reply

13 Aaron @ Lawyerist April 9, 2009 at 9:25 pm

Alex,

Thanks for this great tutorial. We just upgraded to Thesis on our site, and your advice is useful as we think of ways to tweak our layout and functionality.

Aaron @ Lawyerist’s last blog post..Download this: Thesis premium WordPress theme (and a new look for Lawyerist!)

Reply

14 Alex April 9, 2009 at 10:18 pm

Awesome Aaron, I’m glad you stopped by. I saw one of your links get tweeted on Twitter and I thought your blog design was really nice. I’m glad you don’t stick to the regular serif fonts like the rest of us, but instead you go with Courier New for the headings. :p

Reply

15 Aaron @ Lawyerist April 9, 2009 at 10:27 pm

Thanks. We’re currently debating whether to play around with our post footers like yours. Stay tuned.

Aaron @ Lawyerist’s last blog post..Download this: Thesis premium WordPress theme (and a new look for Lawyerist!)

Reply

16 Harish April 9, 2009 at 10:25 pm

Hey great I just guessed that this is thesis theme only after seeing the comment section of the blog. Great customization Alex. Loved your theme

Harish’s last blog post..Why You Should Promote Your Contest? And How ?

Reply

17 Alex April 10, 2009 at 12:03 pm

Thanks Harish, I’m glad the fact that this blog uses Thesis wasn’t that obvious to you. Makes me feel accomplished, as that was one of the goals with the design. :)

Reply

18 Harish April 11, 2009 at 10:27 am

Congratz Alex. Really I could not notice that this is thesis. Until I saw the comments section. Great keep your work :)

Harish’s last blog post..Why You Should Promote Your Contest? And How ?

Reply

19 web offer September 12, 2009 at 9:04 pm

Great job alex :)

20 Phil Barron April 9, 2009 at 10:40 pm

Alex, Blogussion is rockin’ the Thesis Theme admirably. If it wasn’t for the footer credit (and the big yellow ad), few visitors would recognize this as a Thesis site – which is one of the main points behind Thesis. It can be any layout you want. Very well done.

Phil Barron’s last blog post..Smarter people’s blogrolls

Reply

21 Alex April 10, 2009 at 12:04 pm

Thanks a lot Phil, you customized your theme a lot too I see!

Reply

22 Marko Saric April 10, 2009 at 3:27 am

Wow great tips! You made Thesis very unique on this blog… me as well, I really like the styling of the post footer! Keep up the good job!

Marko Saric’s last blog post..8 Thesis theme design tips to make your blog better

Reply

23 Alex April 10, 2009 at 12:05 pm

Marko, you were the whole reason I bought Thesis in the first place. I’m very glad you like what I did here man, thanks for stopping by!

Reply

24 DS Fly Rods April 10, 2009 at 11:53 am

I’ve come across a couple blogs talking about thesis. Wow, people either love it or hate it – no middle of the road indifference. I think its great that you have offered so much help to people wanting to customize – I hope your generosity comes back to you ten-fold.

DS Fly Rods’s last blog post..The Pheasant Tail Nymph

Reply

25 Alex April 10, 2009 at 12:08 pm

Thesis is kind of like a movie – There’s so much hype about it and when you finally get around to go see it, you either love it or hate it. At first I hated Thesis because I couldn’t figure out the hook system. But after using it for a while, I fell in love with it. :D

This post is only the beginning of my Thesis articles here. When I learn more about using Thesis, I can write a lot more great stuff on it. :)

Reply

26 Suzanne April 10, 2009 at 3:02 pm

Alex I love what you guys are doing here. You’ve always got something interesting and I enjoy watching this blog develop. Keep up the great work and thanks for sharing some of the great features you’ve enabled for this site. Very cool.

Suzanne’s last blog post..Talk About Stripping Out The Non-Essential

Reply

27 Matt Langford | MattFlies.com April 10, 2009 at 3:50 pm

Alex, great post! I’m very impressed with your Thesis customizations, easily one of the best I’ve seen. I’d love to see you add to this post! Thanks a lot for your help and resources.

Matt Langford | MattFlies.com’s last blog post..10 Ways to Customize Thesis and Enhance Your Blog

Reply

28 Dennis Edell April 10, 2009 at 5:21 pm

So these codes are strictly for thesis themes, correct?

Dennis Edell’s last blog post..Blog Readers or Twitter Followers – What’s YOUR Preferance?

Reply

29 Alex April 23, 2009 at 10:22 pm

Well, the functions are, but you can take the codes inside them and use them on your own blog.

So basically take out the lines:

function functionName() { ?>

then the endi < ?php and the brackets at the end and you can use it on non Thesis blogs.

Reply

30 Ray April 11, 2009 at 6:29 am

Hi Alex,

Very helpful post as I am creating my first site with Thesis.

You most definitely have style as does your site! Well done!

Reply

31 Mitch April 13, 2009 at 1:02 am

Been meaning to drop by and say that you’ve really done an outstanding job here, Alex.

Hope you’re enjoying your vacation and we’ll be looking forward to seeing your Thesis projects in the future!

Mitch’s last blog post..Why Thesis Rocks for Web Developers

Reply

32 Alex April 23, 2009 at 10:24 pm

Woah, Mitch – thanks man. I love DIYNinjas, you guys do some great work. Really glad you stopped by!

Reply

33 Niche Store Journey April 19, 2009 at 11:55 pm

I am REALLY loving the post footer code you have made here Alex:

Would you mind if I used this code and customized it for my purposes?

Niche Store Journey’s last blog post..Do You Suck at Making Video’s for the Web? Check This Out!

Reply

34 Alex April 23, 2009 at 10:25 pm

Absolutely! That’s why I posted it here, so you guys can modify it as much as you want. Just check out what Matt up there did, he edited it a ton. Go for it, and let me know what you come up with!

Reply

35 Niche Store Journey May 6, 2009 at 6:38 pm

Well I did it!

I am now running Thesis full time on The Niche Store Journey.
The design is not anything mind-blowing, but the readability and function of the site are much better than with my freebie theme.
I will continue to tweak Thesis when I learn new methods!

I implemented your post footer stuff, check it out and let me know what you think!

Reply

36 Alex May 7, 2009 at 4:35 pm

Looks awesome dude! Aren’t you glad you made the switch? :)

37 Mark | HereiBlog.com April 23, 2009 at 10:26 pm

Wow. I can across your site today. I couldn’t believe it was built on thesis. I am looking to revamp my site and have been debating on a magazine theme like Branford Mag or something. I’ve been working with thesis at my office, but don’t personally own it.

After seeing that a magazine type layout is possible on thesis and seeing this site I think I’m sold now! Now I have to figure out how to play with it while not letting everyone see. I will think just a bit more before buying.

Thanks for the tips. Excellent site!

Mark | HereiBlog.com’s last blog post..$5 Deal of the Day Giveaway

Reply

38 Honey Singh April 25, 2009 at 11:28 am

Thanks for presenting the nice facts and information.
Help me lot in editing the thesis. :P

Reply

39 t April 27, 2009 at 11:37 pm

I was wondering how you made your comments. When I use firebug and explore them I see things like .surround ul li, ul.children, commentlist, div.surround. Things that aren’t in the custom.css

How did you put those selectors in there?

Reply

40 Brad Officer May 11, 2009 at 1:17 pm

Site looks awesome! I’m digging the header and nav bars – Very Jealous.

Brad Officer’s last blog post..National Association of Realtors is Old School

Reply

41 Ed Tankersley May 23, 2009 at 11:33 am

Hey, thanks for the great tips. I’m working through them one by one and it’s really helpful to have resources like yours.

One note: I was trying to implement the custom 404 page, and couldn’t get it to work. After some serious head-scratching, I realized that the quote marks in your sample code are “curly quotes.” Once I changed those to straight single quotes, everything worked great.

Ed Tankersley’s last blog post..10 Questions to Ask About Your Website

Reply

42 George Serradinho May 27, 2009 at 1:49 pm

Hi,

I copied your details for post footer and made some changes here and there (I’m only showing the Powered by and Subscribe box). I am struggling to get the boxes to show correctly next to each other with the ‘Leave a comment’ to be on a new line and to the left and under the two sections. You will see in Fx that it appears in the middle of the line.

I would like the 2 boxes next to each other and to be any size in height and the div around it must cater for it.

If you email me I will email you the details I have used (CSS and function). I would appreciate your help on this as I like this little hack.

Pls view one of my posts.

George Serradinho’s last blog post..27 Links to help you with Thesis

Reply

43 Alex June 1, 2009 at 3:34 pm

So, let me get this right – you want the subscribe box and the “powered by” box to be on the same line next to each other?

You will need to do the following in your CSS

Add this code to the box you want to float left:

#leftFloat { float: left; width: 50%; }

and this to the box you want to float right:

#rightFloat { float: right width: 50%; }

Reply

44 Adam June 1, 2009 at 3:09 pm

Hi there I’m pretty new to php more of a graphics person.
I’m trying to implement your first tweak
1. Adding a cool post footer
I’ve done it fine but where I have:

You May Also Be Interested In…
*Similar Posts Code Here

*should this not be dragging in content automatically?

Reply

45 Alex June 1, 2009 at 3:29 pm

Well, you need to replace *Similar Posts Code Here with the code that will show your similar posts. It depends on what plugin you use, bu I recommend you use: http://wordpress.org/extend/plugins/similar-posts/

Reply

46 Richard Barratt July 8, 2009 at 9:39 am

What a great post, thank you.

I have had joy so far in copying the code across (just need to style it now) but I don’t know where to find the ‘Similar Post’ code you mentioned? I have installed the plug-in you recommended, but don’t know where the code is mentioned.

Thank you again.
Richard Barratt´s last blog ..The Incredible Hulk – The real reason he got so pissed off!

Reply

47 Alex July 8, 2009 at 1:14 pm

Use this code:

< ?php similar_posts(); ?>

Good luck Richard, glad you liked this article!
Alex´s last blog ..Syncplicity: Effortless Backup, Synchronization, and Sharing

48 Adam June 1, 2009 at 3:35 pm

Is YARPP classed at that?

Reply

49 Alex June 1, 2009 at 3:43 pm

I believe so, yes.

Reply

50 Adam June 1, 2009 at 4:19 pm

Ok so I’ve gone with your recommendation and I’ve placed this into the custom functions file

It’ s not showing anything though? Any ideas would be much appreciated.
Cheers

Reply

51 Adam June 1, 2009 at 4:30 pm

Ok I’ve got them to show but they are showing directly under the post and not in the area you have them?

How to I put that right? Do you have the settings I need for the Similar Post plugin

Reply

52 Alex June 1, 2009 at 4:31 pm

Can you maybe give me a link so I can help you better?

Reply

53 Brian Meagher June 14, 2009 at 9:50 pm

Adam,
Your after post footer looks good, but the reason there are no links yet may be because you only have a total of 4 posts on your blog.
The YARPP may not have enough data to even work. Check the settings in YARPP too.
I’m no expert, just trying to help.
Brian Meagher´s last blog ..John Dalys Rub & Barbecue Sauce Review

Reply

54 Alex June 15, 2009 at 7:56 pm

Good solution. I am not familiar with YARPP, so I guess I never would have figured that out.

Reply

55 Adam June 1, 2009 at 4:40 pm
56 Alex June 1, 2009 at 6:29 pm

Go into your CSS and add:

.custom #comments { clear: both; }

Reply

57 Adam June 1, 2009 at 6:38 pm

I’ve added that to the custom css file correct?
It’s made space for the links but they aren’t showing?

Reply

58 Adam June 5, 2009 at 5:57 am

Any idea about my last post Alex?

59 Alex June 11, 2009 at 9:08 pm

Looks like everything is working?
Alex´s last blog ..Maximize Your Earnings Through the Thesis Affiliate Program

Reply

60 James 'Thesis Theme Lover' Mann June 5, 2009 at 4:33 am

I would definitely have to say I am one of the ones that LOVE the thesis theme.

I was a bit intimidated at first glance but quickly found my way around and gave already converted one site and am very pleased.

I started with the personal package but after a week with that I upgraded to the developers package so I can use it on my other blogs as well.

Reply

61 Alex June 6, 2009 at 8:38 am

I love Thesis too, and like you, I started out on the Personal license. But I got it up and running here and just said that I had to keep using this on my other blogs! I got the Developers License, and now I am putting all of my design clients on Thesis.

Reply

62 ARUN June 7, 2009 at 1:27 am

Hi Alexia your post are really gud i implemented Author Bio to my thesis theme successfully but i need some change in ~1. Adding a cool post footer ~ in this part you have explained adding a widget below the post in that i need only 2 widget i.e “Subscribe Now” and another one is “Powered by Thesis” and i don’t won’t to add “similar post” please give the tutorial how to do this the same question is asked by George Serradinho in comment but you have not given code here. please tell me how to do that.

Reply

63 HotSauceDaily June 14, 2009 at 9:56 pm

Is #3 Add Custom Info to Featured Post now a bit out of date? It looks like blogussion now has 2 Featured Posts with 14 Teasers.

Perhaps you’ve changed to 2 Featured posts since you wrote this post?

Great job on the site. Thesis rocks!
Brian
Brian Meagher´s last blog ..MOINK Balls – Bacon Wrapped Meatballs With Pepper Jelly Glaze

Reply

64 Alex June 15, 2009 at 7:55 pm

Well, technically we have 2 featured posts now, so it’s not outdated! It will just add the same code to both of the posts. ;)

Reply

65 Abdul June 15, 2009 at 3:04 am

This is exactly what I was looking for, thanks for sharing this; hopefully it will look as good on my blog as it does on your blog :)
Abdul´s last blog ..Content That Will Keep Visitors Coming Back

Reply

66 Abdul June 15, 2009 at 5:24 am

Its up on my blog now and looks great. I ran into a problem on #4, since I let Thesis automatically resize the images to thumbnails, it never created the “thesis_thumb” custom field, so it wouldn’t show the thumbnails anywhere. It was a bad idea for me to let thesis to do that automatically since the image size would be big for a little picture and makes it look ’squashed’/unprofessional, I’m manually doing the thumbnails from now on :) Thanks again.
Abdul´s last blog ..Content That Will Keep Visitors Coming Back

Reply

67 Alex June 15, 2009 at 7:54 pm

Ah, that sucks!

Just a question, how does Thesis automatically do it? Like, I never tried it, I am just curious. What are the steps you take so Thesis does this automatically?

Reply

68 Abdul June 17, 2009 at 7:08 am

You would only need to enter the url of the full sized image in the “post image URL” field and leave the “thumbnail image URL” field blank. Thesis has a built-in feature that auto-resizes the image which can be configured in the “Thesis Options” page :)
Abdul´s last blog ..Content That Will Keep Visitors Coming Back

69 Alex June 20, 2009 at 8:32 am

Ah, I thought that was the problem!

There must be a way to edit the code to put the automatically resized thumbnail in, because it’s one of the best features I’ve found.
Alex´s last blog ..Weekend Round-Up 6/20

Reply

70 Abdul June 20, 2009 at 1:01 pm

If you run out of options, then just use {custom:thesis_image} in the image src instead of {custom:thesis_thumb}. ;)
Abdul´s last blog ..Why You Should UnFollow Everyone On Twitter

71 Erik Kruse August 18, 2009 at 3:04 am

Hi! I tried to implement your #4-tutorial – but no images are showing up :S I think it could be related to the same issue Abdul is describing – I use Thesis´ post image function – but I am not able to fetch images, either with thesis_thumb or thesis_image. Any suggestions?

72 Alex June 15, 2009 at 7:55 pm

Thanks Abdul, I’m sure they will look great!

Reply

73 Tsh October 23, 2009 at 9:07 am

Hi there – I’m with Erik. I’ve got this post footer working beautifully, except for the thumbnails by Similar Posts. I tried both thesis_thumb and thesis_image. So… If you know of a fix, I’d love to hear it!

Thanks so much for this tutorial – it’s insanely helpful and well-written!

Reply

74 Tsh December 7, 2009 at 3:29 pm

Hi there — Anything new on how to get the thumbnails to show in the Similar Posts plugin? I’m still working on it and can’t figure it out.
Tsh´s last blog ..5 Simple Techniques for Enhancing Your Images With Children

Reply

75 Tsh December 7, 2009 at 3:43 pm

Just figured it out, in case any one else has issues. I used thesis_post_image and it worked.

Thanks again for a great tutorial!
Tsh´s last blog ..5 Simple Techniques for Enhancing Your Images With Children

76 Alex June 20, 2009 at 6:35 am

Hey there Alex.

I was just wondering what code you used to display the Similar Posts plugin in that section in the ‘Post Footer’. I’ve tried but it’s not having it.
Alex´s last blog ..Weekend Round-Up 6/20

Reply

77 Abdul June 20, 2009 at 7:49 am

It’s Rob Marsh’s ‘Similar Posts’ Plugin. I’m using it on my blog and working perfectly :)
Abdul´s last blog ..How To Build Backlinks Through Blog Commenting

Reply

78 Alex June 20, 2009 at 8:29 am

Thanks Abdul.

Ok, got it working perfectly now. I must have set some of the exclusion settings and it wasn’t picking anything up.

Now I have to find out why the thumbnails aren’t showing >_>
Alex´s last blog ..Weekend Round-Up 6/20

Reply

79 Abdul June 20, 2009 at 1:04 pm

How would I go by adding more teasers? I want to display more posts on the home page :)
Abdul´s last blog ..Why You Should UnFollow Everyone On Twitter

Reply

80 Adam June 29, 2009 at 4:39 pm

What do I have to change with the author code to put it in OpenHook? I already have things in the after-post section and I want this to show up before it.
Adam´s last blog ..New Blogger Coming to The Site!

Reply

81 Tinh July 5, 2009 at 11:16 pm

Excellent tutorials, thanks for sharing this with us. T
Tinh´s last blog ..So Sánh 19 Twitter Desktop Apps

Reply

82 Free Blogger Templates l WordPress Themes July 26, 2009 at 11:29 am

Thank a lot !
Free Blogger Templates l WordPress Themes´s last blog ..Thesis 1.5.1 – Thesis WordPress Themes – Professional WordPress Theme – The Best Theme Good for SEO

Reply

83 Ashwin / Thoughts Unlimited August 5, 2009 at 1:56 pm

Very useful information for a Thesis newbie like me. Thanks.
Ashwin / Thoughts Unlimited´s last blog ..links for 2009-08-05

Reply

84 ronnell August 5, 2009 at 8:48 pm

Hey!

Very informative site.
Btw, I was trying to install Rob Marsh’s plugins but it doesn’t seem to work on the latest version of Wordpress?

I cant see the options in Settings ? Popular Posts ? Output after I activated the plugin.
Any idea?

Reply

85 Faliq August 13, 2009 at 12:47 am

Hi Alex,

Can u share the ’similar post’ code which we can put here :

Anda Mungkin Juga Berminat Dengan…
Similar Posts Code Here

Thanks

p/s : Are u using related post plugin? or just depending on the code?
Faliq´s last blog ..faliqhazwan: What do you want most and hope to get from twitter?

Reply

86 via August 17, 2009 at 6:36 am

Hi,

Using the custom functions file for changes is quick and easy and there are loads of tutorials and tips. Thanks for sharing your tips :)

Reply

87 Richard Barratt August 18, 2009 at 8:00 pm

Thanks again for this great post. It’s the second time I have used it but this time I seem to have run into a spot of bother and wondered if you know the answer to what’s happening.

For some reason the sidebars now appear below the comments section – the site address is http://blog.mybusinesslwyer.co.uk.

As you will see, every thing is fine on the home page but the problem happens when you open a post.

Any help is hugely appraiated.

Thanks again, Richard

Reply

88 Eric August 27, 2009 at 10:09 am

I would love to know how you guys are doing the “You May Also Be Interested In…” section on this site. That is something I am interested in and think it looks awesome.

Reply

89 Adam Baird August 27, 2009 at 11:32 am

Alex’s tutorial for the similar posts thing is here.
Adam Baird´s last blog ..Twitter Ready Blogs: Use Social Proof to Gain More Followers

Reply

90 Eric August 27, 2009 at 12:22 pm

Thanks Adam!
Eric´s last blog ..68 Classifieds Twitter Feeder v0.3

Reply

91 MC August 31, 2009 at 2:49 am

Hey! Great post. How did you get the thumbnails in next to your similar posts? I’ve been searching around for a way to do it and can’t seem to make it work . I’d love to know how you styled it!

Reply

92 MC August 31, 2009 at 2:51 am

Wow okay. I rescind my question!! Guess I didn’t read close enough – this post has so many comments I must have just scrolled right past that part.

Reply

93 Bilal September 1, 2009 at 4:40 pm

Great article Alex, I will definitly use some of these links as I plan on adding some “new” things to my wonderful thesis theme.
Bilal´s last blog ..Five more affiliate marketing tips to help you become a better affiliate marketer

Reply

94 chris bates September 2, 2009 at 10:02 pm

Great stuff, Alex.

You’re a champion.

I do have a query, however. Can i call a random quote generator to place content in the blue ‘custom’ thesis affiliate box?

If so, how?

Thanks.

BTW, this is a remarkable amount of knowledge you have. Kinda makes me feel like I’m a plumber at a Atomic Physicist’s convention.

Reply

95 Andi | Web Marketer Depot September 8, 2009 at 6:41 pm

Have been considering using Thesis for a while. Just wondering, is it easy to customize the header with thesis? Like maybe change it to a logo or soemthing?
Andi | Web Marketer Depot´s last blog ..7 Little Known Tweaks to Improve Your Money Making Blogs

Reply

96 chris September 10, 2009 at 5:33 am

Andi,

Inserting a logo into the header is possibly one of the easiest things to do in thesis.

There are a million tutorials on how to do it if you have trouble.

If you’re willing to play around with some css you’ll absolutely love thesis.

Reply

97 Jim September 9, 2009 at 11:16 pm

I am having a bit of trouble to show the thumbnails for some reason. Hope you have some advise on this?

Reply

98 David Alexander September 12, 2009 at 3:06 pm

Hey Alex, nice post, lots of cool additions, some I have used, some I havent, but im sure to give the rest a try shortly. Keep up the good work.

D
David Alexander´s last blog ..Giant Mechanical Spider Walking Around City.

Reply

99 NHE September 15, 2009 at 5:27 pm

Thanks Alex, this was incredibly helpful!!
NHE´s last blog ..How to pick a ripe pineapple

Reply

100 Volksphone September 19, 2009 at 9:37 am

This theme looks really great. Nice work and keep on. If you make more send me an email. I am always looking for good themes.
Volksphone´s last blog ..Usability-Schnelltest für die eigene Firmenwebsite

Reply

101 Tinh September 28, 2009 at 12:26 pm

Can you help me make author info box only? I tried to remove some in the code but it does not work properly. Thanks
Tinh´s last blog ..CheerLeaders: ??ng L?c cho các c?u th? gi?a gi? ngh?

Reply

102 Jes October 5, 2009 at 10:58 am

You have such an awesome theme! Man… I wish I could be as creative as you! I have Thesis, but I have no clue how to even make it even remotely look as great as this site! This is very inspiring! Thank you!

- Jes
Jes´s last blog ..Properly Fitting a Football Helmet

Reply

103 Jes October 5, 2009 at 11:42 am

Sorry everyone, I entered the wrong website address on this comment!
Jes´s last blog ..Increase Football Speed and Agility

Reply

104 Jes October 5, 2009 at 11:00 am

Sorry, I entered in the wrong website in my comment earlier. This is my correct site.
You have such an awesome theme! Man… I wish I could be as creative as you! I have Thesis, but I have no clue how to even make it even remotely look as great as this site! This is very inspiring! Thank you!

- Jes
Jes´s last blog ..Increase Football Speed and Agility

Reply

105 ThesisTheme October 6, 2009 at 12:52 pm

Wow! This site is one of the best Thesis customizations I’ve seen. Awesome job! I’ve added Blogussion to my Thesis Theme showcase over at ThesisTheme.net so my readers can see just what is possible with Thesis. Keep up the good work!
ThesisTheme´s last blog ..Thesis Theme Showcase – Blogussion

Reply

106 mktanny October 15, 2009 at 1:17 pm

hey Alex u r really awesome i m really happy that i found ur site,was almost going to give up on thesis.
mktanny´s last blog ..How To Optimise A Website For Bing

Reply

107 Jennifer Wilson - Agent Solutions October 17, 2009 at 7:15 pm

Hey Alex!

I’ve tried to set up the popular posts with thumbnails on my site and have run into a couple of issues. Will your instructions work if you allow Thesis to auto resize the thumbnails? This is what I am having trouble with.

1. Only one of my posts showed the thumbnail. This was the only post where I entered a separate, resized thumbnail image for that post instead of letting Thesis automatically resize them for me.

2. The alignment of the text link and the thumbnail image is out of whack. Any suggestion how to fix that?

Blogussion rocks!

Reply

108 S Ahsan October 19, 2009 at 6:34 pm

Great post! i have been looking for this read bad! cheers

Reply

109 Seth October 20, 2009 at 9:40 am

Great… Glad you could find it! Make sure to check out all of our other posts on thesis customization.

Reply

110 S Ahsan October 20, 2009 at 3:55 pm

will do Seth ;) , good luck

Reply

111 Doug C. October 21, 2009 at 10:27 pm

Great stuff you have here. I’m running into an odd problem with the custom css and custom php files. I open them with Notepad++ to add your code, but for some reason the text editor is amending the file names – for example, when I open custom.css, it appears in my text editor with the name ‘1-custom.css’. Would you know how to fix this werid behavior?

I can’t seem to save them, either.
Doug C.´s last blog ..Talent to Get the Job Done

Reply

112 Doug C. October 22, 2009 at 12:40 am

Ok, I installed the Thesis OpenHook plugin and now I can edit both the custom.css and custom_functions.php files right in the dashboard. I got the post footer, but how do you insert your name and avatar and such in the code? I haven’t a clue where those things go or how to “word” them in the code.
Doug C.´s last blog ..Talent to Get the Job Done

Reply

113 Doug C. October 22, 2009 at 2:49 pm

Anyone?
Doug C.´s last blog ..Talent to Get the Job Done

Reply

114 Seth October 22, 2009 at 5:03 pm

From what I understand of the code the key to the avatar and name/description is by going to “user” then to your profile. Add your description their and when you enter your full name it will appear with the description.

For the avatar the key is to go to wordpress.com and create a profile. Once you have a profile their it will be universal throughout all of your wordpress blogs, and whenever you comment. Then the avatar will appear based upon the code from the custom.php file.
Seth´s last blog ..Very Straightforward Methods to Draw Traffic Back to Old Posts

Reply

115 Brian Meagher October 22, 2009 at 7:31 pm

Doug,
I think you need to visit gravatar.com to set up your avatar. WP will pull that avatar based on the email acct you or your visitors use in the comments. No extra code is needed on your blog based on your Thesis theme. I’m using Thesis too.

As for your other questions about the custom.css and custom_functions.php, you might want to try the Forums on DIYThemes.com

Nice logo and design BTW!
~brian

Reply

116 Seth October 22, 2009 at 5:08 pm

The wording for the code specifically is….


Seth´s last blog ..Very Straightforward Methods to Draw Traffic Back to Old Posts

Reply

117 Norm October 27, 2009 at 3:54 am

Thanks for the great design tips! I just had one question about the customer post footer function.

The function for the custom post footer calls for the similar posts code. I’ve installed the similar posts plugin and looked everywhere for the code but I’m not finding it. So, for someone who doesn’t know what he’s doing, were do I find the code needed to make the similar post function work in the custom post footer?

Reply

118 Tsh November 11, 2009 at 5:53 am

I am trying my darndest to see all the comments here, because I know there’s some in here with code I need, but I’m only able to see the first 19 (the beginning of the comments section says there’s 114). So I’m hoping that by leaving this comment, I’ll be able to see the rest…
Tsh´s last blog ..How To Find More Time During The Day

Reply

119 Tsh November 11, 2009 at 6:25 am

Hmm… Doesn’t look like it. Basically, the code to make the thumbnail show in Similar Posts doesn’t work. And I thought I remembered someone mentioning something about replacing the custom:thesis_thumb part.

So if anyone has any ideas, I’m all ears!
Tsh´s last blog ..How To Find More Time During The Day

Reply

120 Rajesh Kanuri November 20, 2009 at 7:08 am

Thanks for the customizations.. could you tell me how to add footer..
Rajesh Kanuri´s last blog ..New Changes in Alexa Dashboard

Reply

121 Seth November 20, 2009 at 11:08 am

Footers are found at Asnio.com by just clicking on freebies in the menu.

Reply

122 Unique Gifts for Teens November 21, 2009 at 2:59 am

Thanks for the info Alex.

I’m new to blogging and THESIS Theme so I am reaching out to sites like yours for more info.

In fact, I can’t seem to get CommentLuv to work in the latest build of THESIS (1.6) right now. Is this a problem anyone else is having?

Nothing shows up on the site no matter what I do.

Any thoughts? The site is http://www.uniquegiftsforteens.com

Thanks,

Bill

Reply

123 IndianCashMaker November 23, 2009 at 10:52 am

actually, i was getting bored of watching traditional THESIS theme…..your blog and the tweaking you have done to this theme is very very refreshing
IndianCashMaker´s last blog ..Blog Life Cycle Day 10- Blogging in Next 6 Months- Part II

Reply

124 Piyush Makol November 24, 2009 at 10:16 am

Am facing an issue. am only using the author box, and when i hover on the Name of author, it shows the link of current page only. and if i click on it, it opens the current page only again. how do i fix this?
check this out urself. it doesnt reads that href coding, cause no matter i change the href link, it still shows the same page:(
http://www.techparaiso.com/retain-the-smooth-scrolling-in-newer-windows-mobile-phone-os-builds-with-restricted-scrolling/

its something i’ve been looking for everywhere but couldnt find.
and thax for such nice trick.

Reply

125 Blogger Ingusan December 1, 2009 at 1:44 am

Hi all, I’m Rudy.. could someone visit my blog and give me your suggestion to make make blog nice looking.. becuse I don’t know about html coding… please :-)
Blogger Ingusan´s last blog ..Make Money Online is Possible but Not Easy!

Reply

126 Seth December 1, 2009 at 8:24 am

I would add some color to your blog! Also its not very inviting for return visitors with so many ads.

Reply

127 Colleen December 1, 2009 at 12:16 pm

Nice work Alex. We still have you in the que to do some work for us. :)
Colleen´s last blog ..Kennewick Real Estate

Reply

128 Jake | Web Journey December 1, 2009 at 7:38 pm

Hey Alex, Great post.

For some reason though, the thumbnails are not working in my related post plug-in. From what I can tell I followed all the directions correctly, and the thumbnails show up find on the teasers on my blog. The plug-in works fine in every way but the thumbnails.

Thanks for all the help with Thesis!

Reply

129 Jake | Web Journey December 4, 2009 at 6:37 pm

Do you know what’s wrong?
Jake | Web Journey´s last blog ..30 Things to do After Publishing a Post

Reply

130 Soney December 11, 2009 at 1:54 am

I like the Popular posts with thumbs in right sidebar. Thanks for sharing thisis customization.
Soney´s last blog ..The thrilling potential of SixthSense technology

Reply

131 Lam N December 16, 2009 at 9:15 pm

Hi Buddy!

Finally this one worked for me! thank you so much! i have 1 question thought, where do i get the ’simular post code’ from? i have the plugin already but all i know is thats for the side bar, how can i find the code?

thanks for your time and help!
Lam N´s last blog ..MLM Traffic: Attraction Marketing Blueprint Part 2

Reply

132 Lam N December 16, 2009 at 9:28 pm

Please ignore my stupid question! maybe if i had of taken the time to read in the comments!
lol

i was so in a rush i just posted the question but then i thought to myself, “if i have that problem then maybe others would of as well” so read through the comments and found the answer to my own question…

I’m a total newbie when it comes to wordpress, css and html let alone thesis hooks etc, but after getting thesis for about 1 week now, your blog has been instrumental in my thesis devlopment!

Thank you BLOGUSSION!
Lam N´s last blog ..MLM Traffic: Attraction Marketing Blueprint Part 2

Reply

133 Review Gadgets December 20, 2009 at 11:00 am

is it ok if i compress my css custom with css compressor, just for faster load my blog ?

Reply

134 Nezine December 22, 2009 at 1:23 pm

I see that you don’t have links to recent comments. Sometimes, it helps to see at a glance the posts that other readers have found useful and their comments listed.

Is that something you plan to do?

For Bloggers Who want to Stop Writers’ Block

Reply

135 dan December 30, 2009 at 10:13 am

Alex, great tips!

Just a note: the 404 code has “curly quotes” in it rather than straight ones, so the code didn’t work when I first pasted it into the functions file. I had to replace all the apostrophes in the text editor to get it to work.

Reply

136 Anthony December 30, 2009 at 8:20 pm

Thanks Alex, I really enjoy reading your articles. I just recently started a blog about adoption fraud. Not a profitable subject to say the least but one close to my heart. I’m currently in the planning stages for a new blog that I hope to monetize at some point and absolutely love the thesis framework. When I’m ready I’ll be sure to purchase through your link. Keep up the great work.

Reply

137 TechChunks January 14, 2010 at 9:29 am

You are so generous. I really appreciate how you have shared your codes. It would be of great help when we migrate to Thesis theme next month. Thanks a ton buddy :)
TechChunks´s last blog ..How to Enable the God Mode in Win 7 and Why it is Overrated

Reply

138 Tech Maish January 16, 2010 at 12:58 pm

All the tips are really very helpful for newbeis like me.Thank You

Reply

139 Amílcar Tavares January 19, 2010 at 6:19 am

Hi!

I use Thesis OpenHook and I’m having some trouble to remove the “function” and the “add_action” in order yto make it work. Can you help?

You’re very talented. I love your stuff.

Thanks you in advance.
Amílcar Tavares´s last blog ..Hoje é dia de Martin Luther King, Jr.

Reply

140 Chaos P. Bennu January 21, 2010 at 9:28 pm

Still trying to implement a cool footer, but my newb-ism is hampering my efforts. Just gotta keep grinding my nose on this keyboard till I get it. Much appreciated for the tutorial.
Chaos P. Bennu´s last blog ..BLENDS x Ralph Lauren RRL – Limited Edition Black Selvage Denim

Reply

141 marcelino January 23, 2010 at 4:45 pm

Dancing on my laptop, thank you for the tremendous code on the post footer…took a bit of tweaking for my Efficient Related post plugin to surrender to my wishes but I got it to work despite my css ignorance. Again thank you to the 10th degree of fingertips.
marcelino´s last blog ..Big Leak of Oracle Data

Reply

142 adnan January 28, 2010 at 9:32 am

hello everyone.., great place this blogussion!
I have a question maybe not to related to the post but more to thesis designing.
The scenario looks like this:

I’ve added a function the other day which uses the “thesis_hook_after_headline” hook.
I wannit to add this post rating plugin for wordpress and so I build the function:

function post_rating()
{
if (is_single()) { ?>

<?php }
}
add_action('thesis_hook_after_headline', 'post_rating');

everything was great until I tried to give it some style through the custom_css file.

So, the question is how do I access this function or this hook through css?

What i tried is something like:


.post_rating {
text-align: right;
padding-top:5px;
padding-bottom:5px;
}

or


.custom .post_rating {
text-align: right;
padding-top:5px;
padding-bottom:5px;
}

and there were a few other ways I tried it but non of was effective

so the part which I don’t know is:


.custom .post_rating { - is this place here
text-align: right;
padding-top:5px;
padding-bottom:5px;
}

I would really appreciate it if someone had some solutions or the answer.
thanks in advance.

Reply

143 Android February 11, 2010 at 2:41 pm

I just purchased Thesis as well. I’m definitely going to try to implement a few of these techniques. Do you have any other good resources on Thesis for someone who doesnt have any/much programming experience? Much appreciated, thanks!
Android´s last blog ..Android 2.1 Coming to Motorola Droid This Week!

Reply

144 Cemil | Online Business Blackbook February 18, 2010 at 4:11 am

Is this great or what – I have been going crazy trying to change the default 404 message. The new custom 404 Page looks great – thanks Alex!
Cemil | Online Business Blackbook´s last blog ..Thesis Theme 1.7 – Update

Reply

145 Mr.toi@blogtinhoc.info February 27, 2010 at 11:21 pm

Hii Alex, I have a question. Can you help me?.

I’m using thesis and I want thesis auto generate thumbnail image for my post and display it into front page. But I can’t. Hopy you will help me. Thank you very much :)
Mr.toi@blogtinhoc.info´s last blog ..[Thesis TUT] T?o 4 c?t Widget ? Footer cho Thesis

Reply

146 Dimitri Deboel March 1, 2010 at 4:46 pm

Hi,

could somebody help me to solve the problem of duplicate links next to my thumbnails of popular posts links.

Website: skatedthroughlife.com

Thank you!

Reply

147 ARQUIGRAFICO March 4, 2010 at 12:05 pm

I use this trick for my blog, but i am having a problem. The text beside the thumbs are not placed correctly, they are bad aligned. How can i fix this?
ARQUIGRAFICO´s last blog ..El arco en la Construccion.

Reply

148 Shubham March 8, 2010 at 12:04 am

excellent tutorial….implemented all 4 of them…Well btw I liked the share box in the content box at the top..looks innovative…great work Alex..keep it up..!
Shubham´s last blog ..20+ Color Tool For Web Designers/Webmasters and CSS Geeks

Reply

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

CommentLuv Enabled