I’m releasing an update to the Futurosity Eos theme. This version is a quick fix for the problem of excerpts on single posts not displaying properly (they should be in a larger font, etc.), which could give the illusion that a short post was actually being displayed twice.

I’ve also changed the default font from Helvetica to Arial. I noticed that Firefox doesn’t go a good job of displaying Helvetica at smaller sizes. If you’re a font snob like me, it’s an unfortunate choice, but it will look better overall to the average user.

If you’re upgrading from 0.4 and you’ve already edited your theme files, the only file that has changed is style.css. And if you’ve edited style.css, you can just change the font for the <body> tag and fix the excerpts by adding this:

.single .excerpt { border-bottom:1px solid #eaeaea; color:#777; font-size:1.5em; margin-bottom:28px; }

If you liked this post, why not subscribe to Futurosity?

Looking for a host that doesn’t suck? Get great hosting, save money, and support Futurosity. Use code FUTUROSITY for 3 free months!

11 Comments

  1. Farker
    Farker
    16 Feb 08 at 7:24 pm | Permalink

    I encountered this problem and thanks for fixing this!

  2. Robert Ellis 16 Feb 08 at 7:31 pm | Permalink

    No problem! Thanks to Mike Irene for bringing this to my attention.

  3. orangina
    orangina
    05 Mar 08 at 3:59 pm | Permalink

    Great naming coup, Robert.
    Rereading Gibson’s DIFFERENCE ENGINE, decided to grab
    FUTUROSITY…but you were there first.
    Congrats.
    Not to mention hot template aesthetics!

  4. Robert Ellis 05 Mar 08 at 4:08 pm | Permalink

    Thanks, orangina. I haven’t read Difference Engine. Do you recommend it?

  5. Imokon 29 Apr 08 at 1:34 am | Permalink

    Eos is very classy. Simple to customize and everything I’ve needed so far. Thank you so very much for your efforts.

    I hope to go a step further later when I have the time to figure out why my featured post is always my freshest post. I thought it would stay the same until I decided to add another post to my featured category? I don’t really have time or need to make images for every single random post I do right before I go crash :/ Any ideas?

  6. Robert Ellis 29 Apr 08 at 12:31 pm | Permalink

    Imokon, Eos is designed so the most recent post is always featured, but you don’t have to have an image attached to the post.

    If you want to have a featured post that doesn’t change with each new post, you’d have to have something like the featured post in Futurosity Vero, which displays the last post in the Featured category.

    I don’t have time to do it for you, but you can grab this code from the Vero home.php file and edit it for use in Eos:

    
    <?php $feature_post = get_posts( 'category=23&numberposts=1' ); ?>
    <?php if( $feature_post ) : ?>
    		<h2>Featured</h2>
    <?php foreach( $feature_post as $post ) : setup_postdata( $post ); ?>
    <?php $feature_post_id = $post->ID; ?>
    <?php if (function_exists('c2c_get_custom')) : ?>
    		<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
    		<?php echo c2c_get_custom('post-image','<img src="','" alt="<?php the_title(); ?>" class="post-image" />',''); ?>
    		</a>
    	<?php endif; ?>
    		<div id="post-<?php the_ID() ?>" class="<?php sandbox_post_class() ?>">
    			<span class="cat-links"><?php printf(__('%s', 'sandbox'), get_the_category_list(': ')) ?></span>
    			<h2 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php printf(__('Permalink to %s', 'sandbox'), wp_specialchars(get_the_title(), 1)) ?>" rel="bookmark"><?php the_title() ?></a>
    			</h2>
    				<?php the_excerpt(); ?> <span class="published" title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php unset($previousday); printf(__('%1$s', 'sandbox'), the_date('', '', '', false), get_the_time()) ?>
    			</span> &diams; <span class="comments-link"><?php comments_popup_link(__('Comment?', 'sandbox'), __('1 Comment', 'sandbox'), __('% Comments', 'sandbox')) ?>
    			</span>
    

  7. Imokon 30 Apr 08 at 9:44 am | Permalink

    Thank you so much for taking the time to extract that for me. Much appreciated! I’ll definately work with it sometime this weekend.

  8. Robert Ellis 30 Apr 08 at 9:46 am | Permalink

    You’re welcome!

  9. Eduardo Palacios 01 May 08 at 7:48 pm | Permalink

    Hi Robert, Futurosity Eos is great theme. Thanks for release it.

    I was looking to do something what Imokon wants. I solved by using Asides and Customs Fields. You can see it in my blog.

    Now it looks pretty like a magazine. Thanks again!

  10. Robert Ellis 02 May 08 at 3:33 pm | Permalink

    Eduardo, I tried your site, but I get a blank page.

  11. Eduardo Palacios 03 May 08 at 8:29 am | Permalink

    @Robert: Sorry, the site is up now. Please try again.

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*