Support » Fixing WordPress » How to change color of line around ‘Submit Comment’ box

  • Resolved elliesword

    (@elliesword)


    Using Atahualpa. http://www.EleanorDitzel.com

    How do I change the color of the line around the ‘Submit Comment’ box from black to grey?

    Also, when I start to type anything in the Comment Reply box, the background turns to a light blue. Where do I go to change this to a more compatible color?

    And where do I go to change the color of the font when I type in the reply box?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Chad

    (@lynneandchad)

    Change the button border, look in your style.css file for the class .button:

    .button, .Button {
    background-color:#FFFFFF;
    border:2px solid #555555;
    color:#666666;
    font-weight:bold;
    height:24px;
    line-height:16px;
    padding:0 2px; }

    Change the “border” attribute to 2px solid #000000

    To change the background color of the selected text box, find the class

    .input.highlight, textarea.highlight {
    background: #E8EFF7
    border-color: #37699F }

    Just change the background color to whatever you want 🙂

    To change the color of your text, look for:

    input.text, input.textbox, input.password, input.file, input.TextField, textarea {
    background:transparent url(http://www.eleanorditzel.com/wp-content/themes/atahualpa/images/inputbackgr.gif) no-repeat scroll left top;
    border:1px solid #999999;
    color:#888888;
    padding:3px; }

    and change the “color” attribute.

    Those should do the trick… might want to make a backup copy of the style.css just to be safe 🙂

    Thread Starter elliesword

    (@elliesword)

    Many thanks! Good Reply!

    Chad

    (@lynneandchad)

    Thanks! Happy to help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to change color of line around ‘Submit Comment’ box’ is closed to new replies.