• https://madsmondaymuse.com/

    I created this site with a Twenty Eleven child theme of my own making (my first!) and have successfully made many modifications, but I am stumped on how to to this:

    1) Reduce the size/weight of page titles (not site title).

    2) Remove the lines above and below “Older Posts” & “Newer Posts”

    3) Have “Leave a reply” on a separate line from category

    Thank you for any guidance you can give me.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter madestef

    (@madestef)

    I figured out #1, but am still lost on #2&3. Thanks!

    It looks like you copied the entire twenty eleven style sheet into your child theme style sheet. You don’t need to do that. Your child theme style.css required only the header text and the changes you would like incorporated into your theme.

    On to your questions…

    #2 – You need to make two changes

    .hentry, .no-results {border-bottom: 0px solid #DDDDDD;}
    
    and 
    
    .one-column #nav-below {border-bottom: 1px solid #DDDDDD;}

    #3 – copy content.php in the twentyeleven folder into your child theme folder.
    Near line 77 there is a line that starts with <span class="comments-link">

    Wrap that line in paragraph tags, so it looks like this:

    <p>
    <span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
    </p>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Twenty Eleven Modifications’ is closed to new replies.