Viewing 5 replies - 1 through 5 (of 5 total)
  • You’ll need to make a few changes to the CSS and your theme templates.

    The first thing you should to do is make a child theme – Codex: Child theme

    If you make changes and then there’s a theme update, you’ll lose your changes, so a child theme is always a safe choice.

    If you look in your index.php, you should see something that looks like
    <?php the_excerpt(); ?>

    If you change that to <?php the_content(); ?>
    that will display the full article.

    But right now, your theme has a div that wraps the article header and floats it to the left and then the summary float to the right.

    You can either remove those divs (easier option) or edit the CSS (trickier, because it might be used on other templates.

    Thread Starter JDM Graphics

    (@jdm-graphics)

    Thank you for the quick response.

    I’ve changed the <?php the_excerpt(); ?> to <?php the_content(); ?>

    But now I’m trying to figure out which divs I would remove to stop the header from floating…?

    Also, which php would I edit if I wanted my category pages to look like the index.php?

    Thread Starter JDM Graphics

    (@jdm-graphics)

    Nevermind the first part of the last question.

    I found out which CSS tags I should change in order for it not to float.

    But I noticed that the navigation bar/buttons at the top are missing after changing from <?php the_excerpt(); ?> to <?php the_content(); ?>

    How can I prevent that?

    Thread Starter JDM Graphics

    (@jdm-graphics)

    Can anyone help me with how to get the navigation bar to show up while using “content” instead of “excerpt”?

    I’m sorry but as you are using a commercially supported theme, you need to seek support from the theme’s developers.
    http://devpress.com/forums/

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How Can I Make Oxygen Summary Posts Look Like Twenty Elevens?’ is closed to new replies.