• Resolved erikadesigns

    (@erikadesigns)


    With my website, I have a couple things I’m looking to change.
    To start with, my website is here. I’m using a child theme with Twenty Twelve.
    I want to:
    1. Change the size and color of my post titles
    2. Entirely eliminate the top menu
    3. Establish if the Alpine Phototile plugins don’t work with twenty twelve, or if there’s just something I need to tweak.
    4. Remove the drop shadow added to every photo [?!]

    Thanks in advance ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter erikadesigns

    (@erikadesigns)

    [eta: *and the rounded corners on all the photos]

    Are you using a browser tool like Firebug to make the CSS changes? It should show you the CSS for any element on the page – copy that to your child theme and change it there. For example:

    .entry-header .entry-title a {
        text-decoration: none;
    }

    Copy that to the child style.css file and remove the text-decoration part and add font size/color.

    #2 – try:

    .main-navigation {
        display: none;
    }

    #3 – that’s a plugin question – you’ll have to ask them

    #4 – same as #1 –

    .entry-content img, .comment-content img, .widget img, img.header-image, .author-avatar img, img.wp-post-image {
        border-radius: none;
        box-shadow: none;
    }

    Thread Starter erikadesigns

    (@erikadesigns)

    The first one took a bit of tweaking, but everything else worked.
    I’m still learning Firebug… it’s a bit intimidating. I found “Inspect Element” in Google Chrome to be a bit more user friendly, so far.

    Thanks so much for your help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Twenty Twelve – Changing Post Title Size & Hover Color’ is closed to new replies.