How Do i edit a button

  • Unknown's avatar

    I want to make the “Post comment” button green and different in shape and size. This button can be found on the post page where the user wants to comment.

    Thanks !

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    If it is just the comment button you want to change then you can do something like this, feel free to change the colours and sizes!

    #respond .form-submit input#comment-submit {
      line-height:22px!important;
      border-color:#111;
      font-size:16px!important;
      background:#053645!important;
      color:#fff!important;
      font-family:Verdana,sans-serif;
    }
    
    #respond .form-submit input#comment-submit:hover {
      border-color:#ccc;
      background:#ABD037!important;
      color:#000!important;
    }
  • Unknown's avatar

    brilliant, thank you

  • The topic ‘How Do i edit a button’ is closed to new replies.