Forum Replies Created

Viewing 15 replies - 1 through 15 (of 24 total)
  • Thread Starter WysdomTree

    (@wysdomtree)

    Once I added the footer php file to the Twenty Twelve Child Theme rather than pasting it in the child theme css :)it did indeed work!

    So thank you to all who helped with this thread – I do appreciate it!

    Thread Starter WysdomTree

    (@wysdomtree)

    AAAAAAAAAHHHHHHH!!!!!!!! lolol
    okay, I will now learn how to put this file into the child theme file

    thank you for your clarifying observation :)…but assuming this footer php were in the right place did I insert the code correctly?

    thank you so much (too grateful to even be embarrassed lol)
    Danielle

    Thread Starter WysdomTree

    (@wysdomtree)

    Hi Samuel

    I will try re-insertng it in a particular spot and then post it here to see if my error is obvious to you

    since my child css doesn’t have that much on it yet I will include it all and bold the area where Esme’s code was inserted…thank you in advance for taking a look at it

    /*
    Theme Name: Twentytwelve Child
    Description: Child theme for the twentytwelve theme
    Author: Danielle Kreps
    Template: twentytwelve
    */

    @import url(“../twentytwelve/style.css”);

    .entry-content p, .entry-summary p, .comment-content p {
    line-height: 1.51429;
    margin: 0 0 1.71429rem;
    }

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains footer content and the closing of the
    * #main and #page div elements.
    *
    * @package WordPress
    * @subpackage Twenty_Twelve
    * @since Twenty Twelve 1.0
    */
    ?>
    </div><!– #main .wrapper –>
    <footer id=”colophon” role=”contentinfo”>
    <div class=”site-info”>
    <?php do_action( ‘twentytwelve_credits’ ); ?><p>Copyright 2012 <?php bloginfo(‘Wysdom Tree’);?></p>
    ” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentytwelve’ ); ?>” rel=”generator”><?php printf( __( ‘Proudly powered by %s’, ‘twentytwelve’ ), ‘WordPress’ ); ?>
    </div><!– .site-info –>
    </footer><!– #colophon –>
    </div><!– #page –>

    <?php wp_footer(); ?>
    </body>
    </html>

    hopefully it is something quite simple and I do appreciate the help,
    thanks, Danielle

    Thread Starter WysdomTree

    (@wysdomtree)

    Also, she did advise to insert

    <p>Copyright 2012 <?php bloginfo(‘Name’);?></p>

    after

    <?php do_action( ‘twentytwelve_credits’ ); ?>

    but that isn’t working for me

    thanks 🙂

    Thread Starter WysdomTree

    (@wysdomtree)

    Based on Esme‘s advice to diddlyidi have inserted footer php into my childtheme and attempting to follow the rest of her advice

    <p>Copyright 2012 <?php bloginfo(‘Name’);?></p>

    but not sure where to insert this in the footer php pasted below

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains footer content and the closing of the
    * #main and #page div elements.
    *
    * @package WordPress
    * @subpackage Twenty_Twelve
    * @since Twenty Twelve 1.0
    */
    ?>
    </div><!– #main .wrapper –>
    <footer id=”colophon” role=”contentinfo”>
    <div class=”site-info”>
    <?php do_action( ‘twentytwelve_credits’ ); ?>
    ” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentytwelve’ ); ?>” rel=”generator”><?php printf( __( ‘Proudly powered by %s’, ‘twentytwelve’ ), ‘WordPress’ ); ?>
    </div><!– .site-info –>
    </footer><!– #colophon –>
    </div><!– #page –>

    <?php wp_footer(); ?>
    </body>
    </html>

    also, does the name of my site Wysdom Tree fit into her line of code here: (‘Name’)

    Thanks for your help,
    Danielle

    Thread Starter WysdomTree

    (@wysdomtree)

    Well, I found the twenty twelve parent footer php – so would this be inserted, with the appropriate changes, into the child theme below my overriding rules? (have one for line spacing so far)
    Appreciate your help with this,
    Danielle

    Thread Starter WysdomTree

    (@wysdomtree)

    Thanks Andrew (again :))…just checked that link out…can you tell me if one modifies the footer by writing a general rule in the childtheme css below the import rule or would a whole section have to be pasted in…just going to check out the twenty twelve parent theme right now to see if I can figure out where this is.
    Thanks

    Thread Starter WysdomTree

    (@wysdomtree)

    So if you check out my website, the home page and test blog post, you will see that it has indeed worked and now I can see it as well lol…

    I was typing a partial line, hitting return and there would be this big gap between lines…when I typed though to the end of the line and beyond, however, the changed values for the line height were implemented

    the spacing is a little too close now but I can easily change that by adjusting the value in the code you wrote for me

    thanks again,
    danielle

    Thread Starter WysdomTree

    (@wysdomtree)

    Well, if you can see the changes that’s wonderful lolol…I, for some reason, cannot but I will figure this out lolol…I did clear the browser cache in internet options…is there one that I’m missing or is this not the browser cache? (I really am a novice!yikes!)
    that is the last question I will ask you 🙂

    and I have to say that having the line spacing changed (or at least knowing how to do it) now enables me to go forward with writing the website which is really a priority for me right now…I only give this information because I wish for you to have a sense of how invaluable your help has been

    thanks again,
    danielle

    Thread Starter WysdomTree

    (@wysdomtree)

    Hi again

    this is what is now in the child theme css after imputting a change in the line height value and updating the file:

    /*
    Theme Name: Twentytwelve Child
    Description: Child theme for the twentytwelve theme
    Author: Danielle Kreps
    Template: twentytwelve
    */

    @import url(“../twentytwelve/style.css”);

    .entry-content p, .entry-summary p, .comment-content p {
    line-height: 1.31429;
    margin: 0 0 1.71429rem;
    }

    the changes haven’t registered so I’m not sure what I’m doing wrong…I do appreciate all the help you have given though and will come back to this later today…if you see something above, let me know and if not, again thanks for all the time you have given me 🙂

    Thread Starter WysdomTree

    (@wysdomtree)

    Hi,

    I did change the value to 1.31429 in the css but nothing changed so I switched it back so you could at least examine your original code to see if I imputted it correctly…

    I didn’t change the margin value but perhaps both figures have to be changed?…I will wait to see if you respond to this question before I try changing the value again

    thanks for your time

    Thread Starter WysdomTree

    (@wysdomtree)

    Hi WPyogi,

    so I tried your advice and it doesn’t seem to have worked. I have added three lines of “this website is under construction” on the home page for the visual reference and regardless of the value I insert it remains the same…below is the what I have on the child theme css including your code – can you see an obvious error?…

    again, your help is much appreciated 🙂

    danielle

    /*
    Theme Name: Twentytwelve Child
    Description: Child theme for the twentytwelve theme
    Author: Danielle Kreps
    Template: twentytwelve
    */

    @import url(“../twentytwelve/style.css”);

    .entry-content p, .entry-summary p, .comment-content p {
    line-height: 1.71429;
    margin: 0 0 1.71429rem;
    }

    http://www.wysdomtree.com

    Thread Starter WysdomTree

    (@wysdomtree)

    Dear WPyogi,

    sooooooooooooooooooo grateful for your response!!!!!

    hadn’t yet written anything because the what looks to be almost triple default line spacing of 2012 looks ridiculous..can’t make the changes until later this evening but wanted to thank you right away…

    once I am able to adjust the line spacing and get some substance down on paper (lol) I will follow your suggestions for learning how to use firebug as I know there are few other changes I would like to implement

    thanks again,
    Danielle

    Thread Starter WysdomTree

    (@wysdomtree)

    that should read NOT sure where to start lol

    Thread Starter WysdomTree

    (@wysdomtree)

    Thanks Esme,

    Regarding the line height, after trying to change the line spacing in the css unsuccessfully in several themes I finally settled on 2012 theme and knew I would have to see it though to the end with my learning curve. At first I wanted to change the line height in the parent theme but at Andrew Nevins advice I learned how to make the child theme first. Now, I understand that I can make a line spacing rule in the child theme to override the parent theme, however, I would only want the rule to affect the content and not other areas…just sure where to start and if I can figure out how to use firebug do I have to import all of the parent theme stylesheet into the child theme stylesheet so the changes won’t be overridden in an update.

    Appreciate any help here but am currently off to work,
    Thanks,
    Danielle

Viewing 15 replies - 1 through 15 (of 24 total)