The Apathy theme is a crisp, universal three-column dynamic layout that is extremely lightweight and casual. The theme emulates a digital version of the traditional newsprint format, and validates as XHTML strict. Although the CSS only approaches valid, Apathy appears virtually identical on all modern browsers. If you are focusing on text-based content and strive toward coherent, concise presentation, the Apathy theme will serve you well..
Update: Apathy version 2.7 now is officially released! The new version features a triple-loop, liquid-width, three-column layout as well as a completely redesigned code base and improved graphical interface. Further, Apathy 2.7 includes many new configuration options and provides detailed comments and installation instructions. Plus, Apathy employs strictly valid XHTML, nearly valid CSS, universal fonts, and browser-safe colors. Check it out!

Screenshot of Apathy on Firefox
Download
WP Theme - Apathy - version 2.7 - 102KB ZIP
26 Responses
D. Greene – July 25, 2007
Hey, I just installed your theme and I like it a lot so far, but for some reason my most recent post isn’t even displaying on the homepage. What am I doing wrong?
Perishable – July 25, 2007
D. Greene — I see your recent post showing in both side columns. The side columns are meant for unique “side”-content, which is not meant to appear in the center column (unless you want to read it). All of this is explained in the Apathy theme’s information file (“Apathy-v2.7.txt”), which I highly suggest you read. Everything is completely customizable and should work like a champ once configured properly. Let me know if you need any additional help after reading thru the instructions. Good luck!
D. Greene – July 25, 2007
Ok, well, I misread the help file initially and didn’t realize the sidebar posts don’t get displayed in the center part. Is there any way to simply get everything to display in the center bar as well? I realize this sortof defeats the purpose of the design but you know..
I have a WordPress specific problem tho, I can’t get the standard excerpts to work at all – no matter what I do the entire post shows on the main page, under any theme.
I’m really liking a lot of the features of this though, and so far enjoying it.
One minor quibble: no links on the index.php page to RSS feeds for the whole blog.
D. Greene – July 25, 2007
Sorry for spamming your comments like this, but one more thing while I’m at it: on my blog for some reason all the links within posts are the same color as the text, and I’m trying to figure out which div/a thing assigns that color and why it’s not working on mine. In any event, I have trouble ‘getting’ CSS sometimes :(
Perishable – July 25, 2007
Okay, let’s take care of the post links first. Open the style.css file, scroll down to “/* — LINKS — */”, and add this block of code:
div.target a:link, div.target a:visited {text-decoration: none;font-weight: bold;}div.target a:hover, div.target a:active {text-decoration: underline;color: #CC0000;}This code targets post links specifically, and provides you with full control over link properties such as font-weight, underline, and color.
Drop it in and experiment until something clicks, or simply leave “as-is” for some tasty link styles.
Perishable – July 25, 2007
Next, let’s show all side posts in the center column as well. This will require several edits, so prepare yourself and make backups if needed ;)
In each of the following files
index.phppage.phparchives.php (if used)..comment out these two lines
<?php if (in_category('x') && is_home() ) continue; ?><?php if (in_category('y') && is_home() ) continue; ?>..so that they look like this
<?php // if (in_category('x') && is_home() ) continue; ?><?php // if (in_category('y') && is_home() ) continue; ?>..of course, category
('x')and('y')as seen in the example will represent your two chosen categories.That should do it. Upload and enjoy!
D. Greene – July 25, 2007
It worked like a charm!
I’ll be keeping this one, and tweaking it over time as needed.
Thanks for all your hard work on this great theme!
Perishable – July 25, 2007
You are most welcome!
Congratulations on the new theme!
D. Greene – January 30, 2008
Is Apathy currently compatible with WordPress 2.3.2? My theme has gotten all goofy with the links since I upgraded!
Cheers,
Daniel Greene
Perishable – February 3, 2008
Hi D. Greene,
I thought it was compatible, yes.. however, if something seems goofy, please send me an email and let me know what’s up. I know you have been using my theme for quite some time, so I will do everything possible to help! ;)
Regards,
Jeff
Gentleman Boxer – February 12, 2008
It’s a beautiful theme. I’ll most likely keep it. I was just wondering how I could include my blogroll, in one of the sidebars, however.
Thank you so much for your great work.
Perishable – February 13, 2008
Gentleman Boxer,
I am glad you like the theme! Looking at your site, I noticed that the lower portion of the right-hand sidebar appears beneath the page content. Is this intentional? Otherwise, to include your WordPress blogroll into one of the sidebars, simply open the theme’s
index.phpand locate either sidebar. The left sidebar begins with<div id="left">, and the right sidebar begins with<div id="right">. Within either of these blocks of code, place your call to the blogroll as follows:<?php wp_list_bookmarks('arguments'); ?>For example, a good place for a blogroll is in the left sidebar, immediately before the first
<hr class="hr" />element. Of course, feel free to experiment and decide the location that works best for you. Here is more information about customizingwp_list_bookmarks().Regards,
Jeff