• Resolved dimig

    (@dimig)


    Hi again, Ben. I’m still trying to find my footing in WP, so I was hoping you could help me out with a few pointers.

    (Visual reference for 1, 2, 3, visual reference for the rest)

    1. What’s the class for posts’ title text on the front page?

    2 + 3. How do I decrease the white space before and after an excerpt?

    4. What’s the class for this post info (date / author / category)?

    5. How do I reduce the size of the post’s title?

    6. How do I remove the line and reduce the white space it leaves behind?

    7 + 8. How do I reduce the white space before and after the widgets?

    Your theme is awesome, I just want to make a few tweaks. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Sure, to answer your questions:

    These are the class names for #1 and #4:

    Post title class on front page: .excerpt-title
    Post meta class on front page: .excerpt-meta

    Also, check out this quick video for finding classes using Chrome’s developer tools: https://pics.competethemes.com/300J2L3B452J. That makes it really fast and easy to find the class of any element on the page.

    #2-3

    .excerpt-content {
      padding: 12px 0;
    }

    The “12px” value can be decreased to further decrease space above/below the excerpt content.

    #5

    .singular .entry-title {
      font-size: 24px;
    }

    #6

    .excerpt-header:after, .entry-header:after {
      display: none;
    }

    #7-8

    .sidebar-after-post-content,
    .entry-content {
      margin-bottom: 0;
    }

    You should also check out the Tracks CSS Snippets Collection. It’s got dozens of pre-written snippets like these ones you can use to customize your site.

    Thread Starter dimig

    (@dimig)

    Thanks for all the guidance, I really do appreciate it. Resolved. ??

    Theme Author Ben Sibley

    (@bensibley)

    You got it ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing title text and white space in the feed and posts’ is closed to new replies.