Support » Theme: Kokoro » Spacing of post categories

  • Hello!

    I have the Kokoro Pro theme and was wondering if there is a way to increase the space between the categories, as sometimes I have 2 and they run close to each other.

    Thanks,
    Angella

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello borammie,

    Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.

    .post-entry-grid .cat, .post-entry-list .cat {
      background-color: #ffffff;
    }
    
    .post-entry-grid .cat:hover, .post-entry-list .cat:hover {
      opacity: 1;
    }
    
    .post-entry-grid .cat a, .post-entry-list .cat a {
      background-color: #be9c62;
      border-radius: 3px;
      margin-left: 5px;
      letter-spacing: 0.1em;
      padding: 3px 6px;
    }
    
    .post-entry-grid .cat a:hover, .post-entry-list .cat a:hover {
      opacity: 0.8;
    }

    Hope this will helps you.

    Thanks.

    Thread Starter Angella

    (@borammie)

    Oh my goodness! Thank you! It worked beautifully!

    🙂

    Thread Starter Angella

    (@borammie)

    Hello again,

    Is there a code to increase the space between the category and the date on the single posts?

    Also, on the homepage, is there a way to align the two columns of posts so they stack up nicely? I’m guessing how they align depends on title length since titles longer than 2 lines push the content down more. Hope that makes sense…

    Thanks in advance! 🙂

    Hello borammie,

    Try below css code.

    .post-header {
      height: 100px;
    }
    
    .single-post .entry-date {
      margin-left: 15px;
    }

    Hope this will helps you.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Spacing of post categories’ is closed to new replies.