Viewing 2 replies - 1 through 2 (of 2 total)
  • If you learn to use a web debugging tool like Firebug or Chrome Developer Tools, you can easily find where the CSS rules are which affect the appearance of any object. However, it’s not so much finding the file which contains the rule, but the debuggers will help you see the actual CSS which affects a particular element.

    The comments section is enclosed by a DIV with the ID sfw-respond, so you can try adding a rule like this to the end of your child theme’s style.css file:

    #sfw-respond {
        padding-left: 110px;
    }

    You will probably need to add a couple of media queries to adjust the padding at narrower screen widths.

    Thread Starter jeff924

    (@jeff924)

    Worked perfectly, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Comment Container too wide’ is closed to new replies.