Viewing 1 replies (of 1 total)
  • Thread Starter hooko22

    (@hooko22)

    Hello again everyone.

    I found the solution to this problem.

    Turns out I had to edit the two following rules inside of my style css:

    ′input[type=text],input#s {
    margin:0 0 1em;
    width:60%;
    }′

    I changed it to this:

    ′input[type=text],input#s {
    margin-top:1em;
    margin-right:auto;
    margin-left:auto;
    width:60%;
    }′

    Then for the comment box itself. I changed this:

    ′#respond textarea {
    display:block;
    margin:0 0 1em;
    width:60%;
    }′

    To this:

    ′#respond textarea {
    display:block;
    margin-top:1em;
    margin-right:auto;
    margin-left:auto;
    width:60%;
    }′

    Hope this can help someone out there!

Viewing 1 replies (of 1 total)
  • The topic ‘How to center comment forms on image attachments’ is closed to new replies.