• Hi,

    When I try to change the margin for the comment-area i cant figure out where to do it. The div refers class comments-area, but i cant find it in the style.css file . Someone who knows how to do this?

    Using Sobe theme.

    Thanks!

Viewing 1 replies (of 1 total)
  • Hi Georgese,

    I also thought the comment area needs some padding to the right and left sides. You might have solved the issue by now, anyway, here’s the CSS for it. Use it either inside a custom CSS editor or style.css of a child theme:

    .comment-respond {
        padding-left: 2em;
        padding-right: 2em;
    }

    If you can’t see the effect, add !important at the end of the rule declaration, like so:

    .comment-respond {
        padding-left: 2em !important;
        padding-right: 2em !important;
    }

    I hope this helps 🙂
    – Maria Antonietta

Viewing 1 replies (of 1 total)

The topic ‘Change margin for comment-area – Sobe theme’ is closed to new replies.