Changing lettertype button

Discussion in 'Blackriders WordPress Theme' started by maggiemae, Feb 6, 2015.

  1. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello !

    Please use below code in comment.php file and for this process follow below image.

    PHP:
    <?php  $comments_args = array(
            
    // change the title of send button
            
    'label_submit'=>'You text for button',
            
    // change the title of the reply section
            
    'title_reply'=>'Write a Reply or Comment',
            
    // remove "Text or HTML to be displayed after the set of comment fields"
            
    'comment_notes_after' => '',
            
    // redefine your own textarea (the comment body)
            
    'comment_field' => '<p class="comment-form-comment"><label for="comment">' _x'Comment''noun' ) . '</label><br /><textarea id="comment" name="comment" aria-required="true"></textarea></p>',
    );
     
    comment_form($comments_args);
    ?>


    Thanks & Regards
    Pramod
     

    Attached Files:

  3. maggiemae

    maggiemae Member

    Joined:
    Dec 15, 2014
    Messages:
    139
    Likes Received:
    0
    Hello

    Thank you. I changed the text area now but I don't know how to change the font of it to Century Gothic.

    Can you help me with that?
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey maggie!

    Please paste the code given below in custom css section.

    Code:
    #respond input#submit {
    font-family: Century Gothic;
    }
    Thanks
    Praveen
     

Share This Page