• Hi

    I’ve been creating a child theme based on Twenty Eleven and it’s almost finished, it’s all been okay apart from one little element that needs amending in the parent files but I cannot find the element anywhere! PLEASE can someone help me track this down before I go insane??

    Here’s a screen grab of the element that I picked up in Firebug. It’s the top element in the bottom right hand screen that says

    element.style {
        background-color: #FFFFFF;
        margin: 40px;
    }

    And when I delete the margin: 40px line in Firebug it centres the entire site as I would like it to be.

    Does anyone know where I can find this line of code to amend it please?

    Many thanks

    Jo

    http://wordpress.org/extend/themes/twentyeleven/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    It’s either hard-coded into the header.php file of the <body> element, or added by JQuery/JavaScript in the header.php file or footer.php file.
    If it’s jQuery/Javascript, look for <script> tags.

    Thread Starter Jojo

    (@jojofield)

    Excellent! Thanks Andrew, that worked a treat!

    Now, off to buy some help books me thinks! lol

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Okay, but here’s a tip if you didn’t know;
    Within Firebug or Google Chrome’s Inspect Element tool, any style applied to the ‘element.style’ is either

    • Hard-coded into HTML elements as ‘in-line CSS’.
    • Added via jQuery/JavaScript.
    Thread Starter Jojo

    (@jojofield)

    Thank you so much Andrew! That’s very helpful!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Theme: Twenty Eleven] Difficulties tracking down an element to amend it’ is closed to new replies.