• LacyArthur

    (@lacyarthur)


    Hello! I am new to wordpress and installed the Nucleare theme. I have my dashboard settings set to see the full post rather than a summary. However, I believe the theme is set for excerpt only. Is there a way I can change this? Please help.

    I reviewed the editor, and did a search for “excerpt” and couldnt find it anywhere.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author CrestaProject

    (@crestaproject)

    Hi LacyArthur,
    Yes, the theme is set to show only the excerpt.
    You should edit the file /content.php at the line 25 and replace this:

    <?php the_excerpt(); ?>

    with this:

    <?php the_content(); ?>

    BestRegards,
    CrestaProject

    Thread Starter LacyArthur

    (@lacyarthur)

    Hi CrestaProject –

    thank you for replying so timely! I do appreciate it. I couldn’t find <?php the_excerpt(); ?> within the editor.

    Thread Starter LacyArthur

    (@lacyarthur)

    Just kidding! I found it!

    Thread Starter LacyArthur

    (@lacyarthur)

    Since i have you here, can I ask how I would create a border around each individual widget in the sidebar? I was able to set the background color to white but would like each individual widget to have a border.

    if you can help – id appreciate it!

    thank you!

    Theme Author CrestaProject

    (@crestaproject)

    Sure 🙂

    You should do this:
    edit the file /style.css at line 894, you will find a code like this:

    .widget {
      margin: 0 0 2.5em;
    }

    Add this:

    .widget {
      margin: 0 0 2.5em;
      border: 1px solid #000000;
      padding: 1em;
    }

    Of course you can change the border color you want (I put #000000 just as an example)!

    Best,
    CrestaProject

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Full Post Instead of Excerpt’ is closed to new replies.