Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter dimosmera

    (@dimosmera)

    Oh , it appears i forgot to close the href tag or something.
    Anyways, the questions still stand! 🙂

    Theme Author Ben Sibley

    (@bensibley)

    Hi Dimos,

    Thanks for choosing Tracks!

    The following CSS will switch the title to normal capitalization, change the “read the post” text, and darken the background of the posts.

    .site-title {
      text-transform: capitalize;
      letter-spacing: 0;
    }
    .more-link {
      font-size: 0;
    }
    .more-link:before {
      content: "Read Now";
      font-size: 13px;
    }
    .excerpt-container {
      background: #ccc;
    }

    To implement the above CSS, install and activate the Simple Custom CSS plugin, and add the code there.

    You can see in the CSS above that the text for the buttons has been changed to “Read Now”, but you change that to anything you’d like. Also, the post background is turned gray with the (ccc) color code, and that can be changed to any color as well.

    Thread Starter dimosmera

    (@dimosmera)

    Nice, this works like a charm , thanks.
    One more thing : Any chance i can also change the background color of the actual post once the user clicks the “Read Now” button?
    I am refering to this one
    And one strange thing, we switched the title to normal capitalization but on the footer the title is still only capitals as shown above.

    -Dimos

    Theme Author Ben Sibley

    (@bensibley)

    Sure no problem!

    You can add this CSS to change the background of the Posts once clicked through:

    .entry {
      background: #ccc;
    }

    And to change the site title in the footer to be capitalized normally, add this CSS too:

    .site-footer h3 {
      text-transform: capitalize;
      letter-spacing: 0;
    }
    Thread Starter dimosmera

    (@dimosmera)

    Well thanks a lot man, i really like the theme and i’ll make sure i write a nice review too!

    -Dimos

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome, thanks for the review 🙂

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Really nice theme,a couple of questions’ is closed to new replies.