Elegant Minimalism with Sophia, a Thematic Child Theme

Sophia is an elegant, minimalistic child theme for Ian Stewart’s Thematic. It’s a two column theme (right sidebar) and is based on the latest version of Thematic (0.9.5.1 as of this post).

Sophia Thematic Child Theme

Wait. Are You Sure You Want to Install This Theme?

Note that there’s no fancy graphics to distract your readers. No big ugly Twitter/Subscribe/whatever buttons. No Web 2.0 gradients. No abstract, colorful backgrounds. No intricately drawn icons.

Nope.

Sophia is all about your content.

It wraps your ideas in tasteful typography and minimal decorations, then it gets out of the way completely.

Choose Sophia if you believe in substance over style.

Choose Sophia if you need the least friction between your reader and your writings.

Choose Sophia if you want your writing to be the main showcase, the way it should be.

Demo and Download

Demo | Download

Installation

  1. Download Thematic and upload it into your theme folder.
  2. Download Sophia theme above and upload it into your theme folder.
  3. Go into your WordPress Dashboard, select Appearance and activate Sophia.

If you don’t have any idea how to upload a new theme, here’s a tutorial for you.

A Work in Progress

Sophia is a work in progress, as there are some edge cases not yet covered (some obscure CSS stylings, among other things). Feel free to comment and share your ideas below.

Also, you might want to subscribe to wplover to get further updates about Sophia. To be truthful you will probably be deluged with many WordPress-related posts before you get that update, but it’s not like it’s a bad thing, no?

Anyways, enjoy!

15 Responses to “Elegant Minimalism with Sophia, a Thematic Child Theme”

  1. Adi

    Nice thematic child theme you got there! :D …it’s nice having more people support the use of child theme

  2. Andrea_R

    Oh, it’s sooooo preeeetty. :D

  3. Sophia: A Thematic Child Theme

    [...] Sophia is a minimal and elegant Thematic child theme, designed by WPLover. [...]

  4. Sophia : Free BuddyPress Themes

    [...] style.css in the sophia folder. Download the Sofia child theme over [...]

  5. Ron

    Great child theme :)

  6. Cody Jones

    Beautiful work… I love Thematic and what you’ve done with it. I am in the process of combining my portfolio site with my blog and will have to link to you the final results.
    Thanks for your hard work!

  7. sara

    Lovely theme. Just FYI, I notice that I have two searches for some reason (even after removing the widge from the sidebar; and, the Pages work wonderfully from the top nav but don’t seem to recognize parent/child relationships in the sidebar.

    Thanks again for the lovely child theme.

  8. sara

    About the Search box? Nevermind. :)

  9. DLE

    Just switched my site (after 3 years of the same theme) to Sophia. Thank you.

    I’m in the process of making personalizations of my own, and I need help for a problem I can’t resolve.

    In Sophia, you include a list of tags on the main blog page at the end of a post. However, the tag list is omitted on the single post page. I would like to add it to my layout of a single post page, but I’m not sure where that is being called in either Sophia or Thematic.

    Your help is greatly appreciated. Thanks!

  10. DLE

    Also, I’d like to add a 0.5em line space between paragraphs in the comments so that they read more easily. However, I can’t find the source of the “comment-content” div class that controls that display. I’d like to add a CSS call (p + p { margin-top: 0.5em; } ), but I don’t know where to put it given that the div class doesn’t seem to exist anywhere in the stylesheet.

    Thanks for the help. Have a great day.

  11. Hafiz Rahman

    Hi DLE,

    to add the tag back into the single post, here’s what you do.

    First, open Sophia’s functions.php file. Next, do a search for

    <p class="author vcard">

    and go to the first result (should be around line 51). Make a new line after it and add this:

    "<?php the_tags( __( 'Tagged ', 'thematic' ), ", ", "\n" ) ?>"

    That should do the trick.

    Now, about adding a new line, you can simply add:

    .comment-content p + p { margin-top: 0.5em; }

    inside Sophia’s style.css. Put that in the end of the file to be safe.

    With CSS it doesn’t matter if a class/ID/whatever doesn’t exist yet, you can always add it yourself into the stylesheet.

    I hope that helps!

  12. DLE

    Hafiz,

    Thank you so much! Both suggestions worked great.

    Thank you for being a blessing to the WordPress community by providing excellent themes and support.

  13. DLE

    Now that WordPress 3.0 is out, are there any problems we need to look out for with the Sophia 0.9 or with Thematic 0.9.6.2?

  14. Hafiz Rahman

    WordPress 3 should play well with themes made for previous version (otherwise many of them will be broken!).

    I’ve just checked the Thematic release notes as well, no issue as best as I can tell.

Leave a Reply

Latest Links More →

Custom Shortlinks for WordPress

Have your own short domain name for the purpose of shortlinking? Here’s an easy way to combine that with your WordPress install.

The Quick Start Guide to Using Google Webmaster Tools With WordPress

GWT is a great, frequently updated features like showing you search queries volume, malware and crawl error diagnostics and links to your site. If you don’t use it yet, you probably need to. This will help you get started.

WordPress & jQuery Contact Form without a Plugin

I would recommend this either if you want more flexibility or to learn how to code a contact form.

Understanding and cleaning the pharma (spam) hack on WordPress

How to fix that hack:

This attack is very interesting because it is not visible to the normal user and the spam (generally about Viagra, Nexium, Cialis, etc) only shows up if the user agent is from Google’s crawler (googlebot). Also, the infection is a bit tricky to remove and if not done properly will keep reappearing.

Web Safe Fonts Cheat Sheet

An updated (written in April 2010), well researched, CC-licensed Web safe fonts cheat sheet, available both in low-res PNG and high-rest PDF. Even the article is useful as well.

The Nicest 2010 Child Theme You’ll See Today

The Timaru Mental Health Support Trust website, made for charity by Team USA (comprised by web superstars like Jason Santa Maria, Dan Mall, Liz Danzico and Automattic’s John Ford) during the FullCodePress competition, is actually a clever child theme of 2010.

More recap by JSM, Daniel Mall, and Liz Danzico.

WordPress 3.0 Theme Tip: The Comment Form

The simpler way to code comment form (once you understand how hooks and filters work).

Showing and hiding content with pure CSS3

I like it, I think it’s short and easy to understand.