• Hello everyone, launched my first wordpress and i’m SUPER excited!

    I installed the Tonal Theme and there are a few changes i’d like to make, but I don’t know CSS that well and was wondering if somebody can help me out by navigating me through the changes in the editor.

    my site is rononone.com and here are the following changes i’d like to make:

    1. I’d like to make the font smaller for my post headlines (i.e. EPISODE #1: JON BUSCEMI)

    2. I’d also like to choose a different font color for my post headlines. (does it have to be a specific color or can I choose any color value i.e. #3aea3d, etc)

    3. This theme has these sort of beige-colored dividers between posts, how can I change that color to black?

    That’s all for now! Thank you so much for taking the time to read/help! Happy Labor Day 🙂

    – Ron

Viewing 3 replies - 1 through 3 (of 3 total)
  • h1 {
        font-size: 4rem;
        color: #3aea3d;
    }
    .hentry {
        border-bottom: 10px solid black;
    }

    at the bottom of your stylesheet should do the trick.
    Google how to create and use a child theme and firebug or similar tool

    Thread Starter rononone

    (@rononone)

    Thanks Marklcm! The font sizing worked, everything else did not 🙁

    I’m gonna keep poking around…

    try

    h1, h2, h3, h4, h5, h6, a, a:visited {
        color: #3aea3d;
    }
    .hentry {
        border-bottom: 3px solid black !important;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Making minor adjustments to TONAL theme…’ is closed to new replies.