Support » Plugin: Social » [Plugin: Social] Feature request – ability to specify size of comment box

  • I’m loving this Social plugin, but one thing I didn’t love was the small default size of the textarea box where people can leave comments. My “fix” was to add an entry to the CSS file of my child theme of this:

    #social #respond textarea.social-input {
    width: 400px;
    }

    which made the comment box an appropriate width for my site layout.

    While it worked for me, it’s just a suggestion for a tweak – perhaps you could add a configuration option to the admin panel that would allow people to set the size of the comment box.

    Thanks again for making an awesome plugin!

    http://wordpress.org/extend/plugins/social/

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

Viewing 1 replies (of 1 total)
  • What led you to that code?!?

    Hmmm I had to add this. The text box was half invisible due to the size of the space it was in vs the size of the box itself.

    #commentform {
    margin: 1em 0;
    width: 625px;
    }

    #commentform textarea {
    background: #FFFFFF;
    border: 1px solid #d6d3d3;
    width: 625px;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Social] Feature request – ability to specify size of comment box’ is closed to new replies.