Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • Thread Starter netadminoh

    (@netadminoh)

    Samuel – Your recommendation worked perfectly.

    Added to the theme-child:
    p {
    margin-bottom: 20px;
    }
    then changed 20 to 0.

    I’m closing this thread

    Samuel – Thank You for your help

    Thread Starter netadminoh

    (@netadminoh)

    I’ll look into Firebug. I’ve seen others talking about it. My universe is actually in networking development. I was forced to deal with a web server and IIS 7 so one thing led to another.

    I’m moving on to paragraph issues. I welcome your coaching there as well if your so enclined.
    thread – “Remove space between paragraphs in theme”
    esmi – Thank You for your time. I’m closing this thread.

    Thread Starter netadminoh

    (@netadminoh)

    esmi – just took a quick course in Class and ID’s. Still weak on the subject, but realized that I cannot enter into the child a partial command. See if below is more on track. I tested and it does work at the 950px width. Also I learned that using percentage syntax is (max-width: 100%) not max-width: 100%px)

    /*
    Theme Name: Twenty Fourteen Child
    Theme URI: http://wordpress.org/themes/twentyfourteen
    Description: Twenty Fourteen Child Theme
    Author: WPMU
    Author URI: http://wpmu.com
    Template: twentyfourteen
    Version: 1.0.0
    */
    @import url(“../twentyfourteen/style.css”);
    /* =Theme customization starts here
    ————————————————————– */
    body {
    border: 10px solid red !important;
    }
    .site-content .entry-header,
    .site-content .entry-content,
    .site-content .entry-summary,
    .site-content .entry-meta,
    .page-content {
    margin: 0 auto;
    max-width: 950px;
    }

    Thread Starter netadminoh

    (@netadminoh)

    esmi – I’m a quick learner so first i need to study classes and ids to dialog with you correctly. I will followup with you on this. another member – pyjamaman – gave me a recommendation and it seems to work. So with best practice in mind, here is the code for the theme-child. Let me know If I’m on track. Thanks again.

    /*
    Theme Name: Twenty Fourteen Child
    Theme URI: http://wordpress.org/themes/twentyfourteen
    Description: Twenty Fourteen Child Theme
    Author: WPMU
    Author URI: http://wpmu.com
    Template: twentyfourteen
    Version: 1.0.0
    */
    @import url(“../twentyfourteen/style.css”);
    /* =Theme customization starts here
    ————————————————————– */
    body {
    border: 10px solid red !important;
    }
    .site-content .entry-content {margin: 0 auto;max-width:950px;}
    —————End of Code ———————–

    Thread Starter netadminoh

    (@netadminoh)

    pyjamaman – thank you for your help. It appears your recommendation worked. Please go to new threard, “How To Process a change in a theme-child”. I’ll finish up discussion there. Thanks again.

    Thread Starter netadminoh

    (@netadminoh)

    A Forum moderator clearly says copying all orininal style.css to child is not a good idea. So I’m back to square one. the answer lies in the syntex.

    In the child style.css, the code below is not sufficient. So what is?
    .page-content {
    margin: 0 auto;
    max-width: 950px;
    }

    Thread Starter netadminoh

    (@netadminoh)

    esmi – thank you for your help. I have removed original code from child to follow best practice. I’m continuing this discussion on thread “How To Process a change in a theme-child”. Please join me there. Thank You.

    Thread Starter netadminoh

    (@netadminoh)

    Since we have confirmed that that child is working. I’m going to close this thread. Thanks everyone for your help.

    Thread Starter netadminoh

    (@netadminoh)

    This may not be best practice but here is a test that worked.
    Since the process of child entries is a copy from original and paste to child or add other code, I copied the complete style.css original and pasted to the child. Then I changed .page-content max-width: 950px. I left the red boarder so that I know I’m looking at the child and not the original. this seems to have worked. Is there any issue with this approach?

    Thread Starter netadminoh

    (@netadminoh)

    This may not be best practice but here is a test that worked.
    Since the process of child entries is a copy from original and paste to child or add other code, I copied the complete style.css original and pasted to the child. Then I changed .page-content max-width: 950px. I left the red boarder so that I know I’m looking at the child and not the original. this seems to have worked. Is there any issue with this approach?

    Thread Starter netadminoh

    (@netadminoh)

    added body code and red boarder did appear. this means that the child style.css is setup correctly. If this assumption is wrong, let me know.
    Next – I commented out the code that I copied and manally typed in.
    Test did not change width of text as expected. here is child style.css

    /*
    Theme Name: Twenty Fourteen Child
    Theme URI: http://wordpress.org/themes/twentyfourteen
    Description: Twenty Fourteen Child Theme
    Author: WPMU
    Author URI: http://wpmu.com
    Template: twentyfourteen
    Version: 1.0.0
    */
    @import url(“../twentyfourteen/style.css”);
    /* =Theme customization starts here
    ————————————————————– */
    /*
    .page-content {
    margin: 0 auto;
    max-width: 950px;
    }
    */
    body {
    border: 10px solid red !important;
    }
    .page-content {margin: 0 auto;max-width: 950px;}

    Thread Starter netadminoh

    (@netadminoh)

    Based on recommendation that 100%px is invalid, changed to 950px.
    the original theme style.css = max-width: 474px;
    the child theme style.css = max-width: 950px;
    Each time I change oode in style.css, I restart Web Server Service and clear browser cache.

    2 Tests conducted
    1st without child style.css.
    on original style.css = max-width: 950px;
    web page showed wider text as expected.

    2nd with child style.css.
    on original style.css = max-width: 474px;
    on child style.css = max-width: 950px;
    Web page stays at 474 and does not go to 950px as expected

    here is child style.css code
    /*
    Theme Name: Twenty Fourteen Child
    Theme URI: http://wordpress.org/themes/twentyfourteen
    Description: Twenty Fourteen Child Theme
    Author: WPMU
    Author URI: http://wpmu.com
    Template: twentyfourteen
    Version: 1.0.0
    */
    @import url(“../twentyfourteen/style.css”);
    /* =Theme customization starts here
    ————————————————————– */
    .page-content {
    margin: 0 auto;
    max-width: 950px;
    }
    ————————–End of Code —————-

    Thread Starter netadminoh

    (@netadminoh)

    Based on recommendation that 100%px is invalid, changed to 950px.
    the original theme style.css = max-width: 474px;
    the child theme style.css = max-width: 950px;
    Each time I change oode in style.css, I restart Web Server Service and clear browser cache.

    2 Tests conducted
    1st without child style.css.
    on original style.css = max-width: 950px;
    web page showed wider text as expected.

    2nd with child style.css.
    on original style.css = max-width: 474px;
    on child style.css = max-width: 950px;
    Web page stays at 474 and does not go to 950px as expected

    here is child style.css code
    /*
    Theme Name: Twenty Fourteen Child
    Theme URI: http://wordpress.org/themes/twentyfourteen
    Description: Twenty Fourteen Child Theme
    Author: WPMU
    Author URI: http://wpmu.com
    Template: twentyfourteen
    Version: 1.0.0
    */
    @import url(“../twentyfourteen/style.css”);
    /* =Theme customization starts here
    ————————————————————– */
    .page-content {
    margin: 0 auto;
    max-width: 950px;
    }
    ————————–End of Code —————-

    Thread Starter netadminoh

    (@netadminoh)

    Please help with syntex:

    Which one is right or type what I need please

    1. max-width: 100%px;
    2. max-width: 100%?;

    Thread Starter netadminoh

    (@netadminoh)

    Here is a small test to show that child style.css works.

    /*
    Theme Name: Twenty Fourteen Child
    Theme URI: http://wordpress.org/themes/twentyfourteen
    Description: Twenty Fourteen Child Theme
    Author: WPMU
    Author URI: http://wpmu.com
    Template: twentyfourteen
    Version: 1.0.0
    */
    @import url(“../twentyfourteen/style.css”);
    /* =Theme customization starts here
    ————————————————————– */
    .page-content {
    margin: 0 auto;
    max-width: 100%px;
    }
    ———————End of Code —————–

    When I change max-width: 474px to 100%px in the “Original” style.css, I get the expected results of a wide text body display. However, when I leave the “Original” style.css at the default max-width: 474 and change the child max-width: 100%px, the text does not change and remains at the 474.
    Process was copy from original and past to child. Then change child to 100%px. Suggestions on how to test this out?

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