• Resolved Meaghan Kent

    (@meaghan-kent)


    Hi – great theme. Really enjoying Tracks! I have a few questions that I’m hoping you can help with. The website I need help with is thenorthjunction.com.

    1. How can I remove the caps from the title of the website? I want no capitalization at all.

    2. How can I remove the caps from the title of posts / pages? I just want regular capitalization for these.

    3. I’m using Easy Google Fonts to change to customize. I change the main title font of the website but it only updated on the homepage and not other pages. Do you know how to fix this?

    4. Is there a way to delete the extra spacing that appears in between the Related Posts and Comments section?

    5. Is there a way to change the colour of the Author Name and Date stamp that appears on the home page and on each post? I cannot seem to find this anywhere.

    Thanks! Again, love this theme and how much freedom you have with it!

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

    (@bensibley)

    Hi Meaghan,

    Thanks for choosing Tracks!

    The following CSS will address numbers 1,2 and 5:

    .site-title,
    .excerpt-title,
    .entry-title {
      text-transform: capitalize;
      letter-spacing: 0;
    }
    .entry-meta,
    .entry-meta a,
    .entry-meta a:link,
    .entry-meta a:visited,
    .excerpt-meta,
    .excerpt-meta a,
    .excerpt-meta a:link,
    .excerpt-meta a:visited  {
      color: #43b3c4;
    }

    You can change the color code above to switch the color of the author name and date above each post title.

    For #3 and 4, I’ll need to check out the site to help with them. Could you share a link?

    Thanks!

    Theme Author Ben Sibley

    (@bensibley)

    Woops sorry I missed the URL.

    For #3, the site title switches to an h2 element for all pages besides the front page. If you target h2 elements as well with the Righteous font, it will use that font on all pages.

    Lastly, this CSS should remove some of the space between the related posts and comment form:

    .entry-meta-bottom {
      display: none;
    }
    Thread Starter Meaghan Kent

    (@meaghan-kent)

    Thanks Ben! I’m not entirely sure how to target the h2 elements. I’m quite the the newbie to WordPress.

    Also, one more question – I have three widgets running in my footer right now but also custom text (copyright information). The custom text is being overwritten by the widgets. Is there anyway to have all four elements show up? Thanks!

    Theme Author Ben Sibley

    (@bensibley)

    Sure, here’s where you can edit the H2 font via the Easy Google Fonts plugin: https://pics.competethemes.com/1V1Y312g1q1m. Once added there the site title should keep the same font everywhere.

    For the copyright info, what’s happened is that some other CSS added to the site has affected it and made it dark like the background: https://pics.competethemes.com/0P2A173y0v1h

    The following CSS should override it and make the text visible again:

    .design-credit p {
      color: #8c8c8c !important;
    }
    Thread Starter Meaghan Kent

    (@meaghan-kent)

    Thanks! Everything worked! Your support for this theme is one of the reasons I chose it!

    Theme Author Ben Sibley

    (@bensibley)

    No problem, glad I could help ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘A few questions – customization’ is closed to new replies.