• I haven’t been able to find solution to this problem that I noticed earlier today: On comment form, there are three fields, plus message field, which width I would like to change because those are too small. When I inspect the source code with Firebug, I find the part that determines the width of the textarea (the author text field):

    < input id=”author” type=”text” aria-required=”true” size=”30″ value=”” name=”author” >

    And that is what i wanna change. But I have not been able to find the directory where these codes are in.

    The url is here (roll the page down to see the problem).

    I appreciate any suggestions of how to fix this issue.

Viewing 1 replies (of 1 total)
  • Thread Starter Roope Rautiainen

    (@roope-)

    Ah. It was so obvious that I almost feel ashamed. Just wrote couple lines with css:

    input[type=”text”], input[type=”text”], input[type=”text”] {
    width:350px;
    }

    and saved it in mytheme’s style.css file.

Viewing 1 replies (of 1 total)
  • The topic ‘Where to change the 'size' of author, email and url text fields?’ is closed to new replies.