How to Style the WordPress Comment Form (Ultimate Guide)

[agentsw ua=’pc’]

Do you want to change the style of the WordPress comment form on your website?

Comments play an important role in building user engagement on a website. A good-looking user-friendly comment form encourages users to participate in the discussion.

In this article, we’ll show you how to easily style the WordPress comment form to boost engagement on your website.

style the wordpress comment form og

Contents

Before Getting Started

WordPress themes control the appearance of your website. Each WordPress theme comes with several files including template files, functions file, JavaScripts, and stylesheets.

Stylesheets contain the CSS rules for all elements used by your WordPress theme. You can add your own custom CSS to override your theme’s style rules.

If you haven’t done this before, then see our article on how to add custom CSS in WordPress for beginners.

Apart from CSS, you may also need to add some functions to modify the default appearance of your WordPress comment form. If you haven’t done this before, then please see our article on how to copy and paste code in WordPress.

That being said, let’s take a look at how to style the WordPress comment form.

Since this is a fairly comprehensive guide, we have created a table of content for easy navigation:

Styling WordPress Comment Form Using SeedProd Theme Builder

This method requires SeedProd which is the best WordPress page and theme builder plugin on the market.

It is recommended for beginners with no coding experience. However, the downside of this method is that it will replace your existing WordPress theme with a custom theme.

First, you need to install and activate the SeedProd plugin. For more details, see our step-by-step guide on how to install a WordPress plugin.

Note: You’ll need at least the PRO plan to access the theme builder feature.

Upon activation, you’ll need to create templates for your custom WordPress theme. SeedProd allows you to easily generate these templates using one of their built-in themes.

For detailed instructions, see our tutorial on how to create a custom WordPress theme without coding.

Once you have generated your theme templates, you need to edit Single Post template.

Edit the single post template

This will load the single post preview in the SeedProd theme builder interface. You’ll notice the comment form block at the bottom of the preview.

Edit your comment form in SeedProd

Simply click on the comment form and you will see its properties in the left panel.

From here, you can add a comment note or privacy policy, you can also switch to the Advanced tab to edit comment form style without writing any CSS code.

Advance styling options for comment form in SeedProd

Once you are finished, don’t forget to click on the Save button to publish your changes.

SeedProd makes it super easy to change the style of any element on your website without writing code.

However, it is a theme builder and you may already be using a WordPress theme that you like. In that case, the following tips will help you manually change comment form styles in WordPress.

Changing Comment Form Style in WordPress

Inside most WordPress themes there is a template called comments.php. This file is used to display comments and comment forms on your blog posts. The WordPress comment form is generated by using the function: <?php comment_form(); ?>.

By default, this function generates your comment form with three text fields (Name, Email, and Website), a textarea field for the comment text, a checkbox for GDPR compliance, and the submit button.

You can easily modify each of these fields by simply tweaking the default CSS classes. Below is a list of the default CSS classes that WordPress adds to each comment form.

#respond { }
#reply-title { }
#cancel-comment-reply-link { }
#commentform { }
#author { }
#email { }
#url { }
#comment
#submit
.comment-notes { }
.required { }
.comment-form-author { }
.comment-form-email { }
.comment-form-url { }
.comment-form-comment { }
.comment-form-cookies-consent { }
.form-allowed-tags { }
.form-submit

By simply tweaking these CSS classes, you can completely change the look and feel of your WordPress comment form.

Let’s go ahead and try to change a few things, so you can get a good idea on how this works.

First, we will start by highlighting the active form field. Highlighting the currently active field makes your form more accessible for people with special needs, and it also makes your comment form look nicer on smaller devices.

#respond {
background: #fbfbfb;
padding:0 10px 0 10px;
}

/* Highlight active form field */

#respond input[type=text], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #DDDDDD;
}

#respond input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
textarea:focus {
box-shadow: 0 0 5px rgba(81, 203, 238, 1);
margin: 5px 1px 3px 0px;
border: 2px solid rgba(81, 203, 238, 1);
}

This is how our form looked like in the WordPress Twenty Sixteen theme after the changes:

Highlight active comment form field

Using these classes, you can change the behavior of how text appears inside input boxes. We will go ahead and change the text style of the author name and the URL fields.

#author, #email {
font-family: "Open Sans", "Droid Sans", Arial;
font-style:italic;
color:#1d1d1d;
letter-spacing:.1em;
} 

#url  {
color: #1d1d1d;
font-family: "Luicida Console", "Courier New", "Courier", monospace;
} 

If you take a close look in the screenshot below, the name and email field font is different than the website URL.

Input styles for WordPress comment form

You can also change the style of the WordPress comment form submit button. Instead of using the default submit button, let’s give it some CSS3 gradient and box-shadow.

#submit {
background:-moz-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
background:-webkit-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
background:-o-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
background:-ms-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
background:linear-gradient(to bottom, #44c767 5%, #5cbf2a 100%);
background-color:#44c767;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px;
border:1px solid #18ab29;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:17px;
padding:16px 31px;
text-decoration:none;
text-shadow:0px 1px 0px #2f6627;
} 

#submit:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #5cbf2a), color-stop(1, #44c767));
background:-moz-linear-gradient(top, #5cbf2a 5%, #44c767 100%);
background:-webkit-linear-gradient(top, #5cbf2a 5%, #44c767 100%);
background:-o-linear-gradient(top, #5cbf2a 5%, #44c767 100%);
background:-ms-linear-gradient(top, #5cbf2a 5%, #44c767 100%);
background:linear-gradient(to bottom, #5cbf2a 5%, #44c767 100%);
background-color:#5cbf2a;
}
#submit:active {
position:relative;
top:1px;
}
Comment form submit button

Taking WordPress Comment Forms to the Next Level

You might be thinking that was too basic. Well, we have to start there, so everyone can follow along.

You can take your WordPress comment form to the next level by rearranging form fields, adding social login, comment subscriptions, comment guidelines, quicktags, and more.

Add Social Login to WordPress Comments

Let’s start with adding social logins to WordPress comments.

The first thing you need to do is install and activate the Super Socializer plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, you need to visit Super Socializer » Social Login and then check the box that says ‘Enable Social Login’.

Check box to enable social login

This brings up the social login options panel. First, click the ‘Advanced Configuration’. tab

Then, make sure the ‘Enable at comment form’ box is checked.

Enable social login on comment form

Next, click the ‘Basic Configuration’ tab. Here, you can choose the social networks you want to add by checking the boxes in the ‘Select Social Networks’ section.

Select social networks for login

Below this, the plugin will require API keys in order to connect with social platforms. Simply click on the ‘Question Mark’ icon to bring up the instructions on how to get this for each platform.

Enter social network API keys

Once you’re done, click the ‘Save Changes’ button to save your social login settings.

You can now visit your website to see the social login buttons above your comment form. 

Social login comment form example

Adding Comment Policy Text Before or After Comment Form

We love all of our users, and we really appreciate them taking a few minutes to leave a comment on our site. However, to create a healthy discussion environment it is important to moderate comments.

To have full transparency, we created a comment policy page, but you can’t just put this link in the footer.

We wanted to have our comment policy be prominent and visible for all users who are leaving a comment. This is why we decided to add the comment policy in our WordPress comment form.

If you want to add a comment policy page, then the first thing you need to do is create a WordPress page and define your comment policy (you can steal ours and modify it to meet your needs).

After that, you can add the following code in your theme’s functions.php file or a site-specific plugin.

function wpbeginner_comment_text_before($arg) {
    $arg['comment_notes_before'] .= '<p class="comment-policy"">We are glad you have chosen to leave a comment. Please keep in mind that comments are moderated according to our <a href="http://www.example.com/comment-policy-page/">comment policy</a>.</p>';
    return $arg;
}

add_filter('comment_form_defaults', 'wpbeginner_comment_text_before');

The above code will replace the default comment form before notes with this text. We have also added a CSS class in the code, so that we can highlight the notice using CSS. Here is the sample CSS we used:

p.comment-policy {
    border: 1px solid #ffd499;
    background-color: #fff4e5;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0px 10px 0px;
    font-size: small;
    font-style: italic;
}

This is how it looked on our test site:

Comment policy note

If you want to display the link after the comment text area, then use the following code.

function wpbeginner_comment_text_after($arg) {
    $arg['comment_notes_after'] .= '<p class="comment-policy"">We are glad you have chosen to leave a comment. Please keep in mind that comments are moderated according to our <a href="http://www.example.com/comment-policy-page/">comment policy</a>.</p>';
    return $arg;
}

add_filter('comment_form_defaults', 'wpbeginner_comment_text_after');

Don’t forget to change the URL accordingly, so it goes to your comment policy page rather than example.com.

Move Comment Text Field to Bottom

By default, the WordPress comment form displays the comment text area first and then the name, email, and website fields. This change was introduced in WordPress 4.4.

Before that, WordPress websites displayed name, email, and website fields first, and then the comment text box. We felt that our users are used to seeing the comment form in that order, so we still use the old field order on WPBeginner.

If you want to do that, then all you need to do is add the following code to your theme’s functions.php file or a site-specific plugin.

function wpb_move_comment_field_to_bottom( $fields ) {
$comment_field = $fields['comment'];
unset( $fields['comment'] );
$fields['comment'] = $comment_field;
return $fields;
}

add_filter( 'comment_form_fields', 'wpb_move_comment_field_to_bottom');

This code simply moves the comment text area field to the bottom.

Moving comment field to the bottom

Remove Website (URL) Field from WordPress Comment Form

The website field in the comment form attracts a lot of spammers. While removing it won’t stop spammers or even reduce spam comments, it will certainly save you from accidentally approving a comment with bad author website link.

It will also reduce a field from the comment form, making it easier and more user-friendly. For more on this topic, see our article on removing website url field from WordPress comment form

To remove URL field from comment form, simply add the following code to your functions.php file or a site-specific plugin.

function wpbeginner_remove_comment_url($arg) {
    $arg['url'] = '';
    return $arg;
}
add_filter('comment_form_default_fields', 'wpbeginner_remove_comment_url');

Remove URL field

Add a Subscribe to Comments Checkbox in WordPress

When users leave a comment on your website, they might want to follow up on that thread to see if someone has replied to their comment. By adding a subscribe to comments checkbox, you enable users to receive instant notifications whenever a new comment appears on the post.

To add this checkbox, the first thing you need to do is install and activate Subscribe to Comments Reloaded plugin. Upon activation, you need to visit StCR » Comment Form page to configure the plugin settings.

For detailed step-by-step instructions, see our article on how to allow users to subscribe to comments in WordPress.

Subscribe to comments checkbox

Add Extra Fields to WordPress Comment Form

Want to add extra fields to your WordPress comment form? For instance, an optional field where users can add their Twitter handle?

Simply install and activate the WordPress Comments Fields plugin. Upon activation, go to the ‘Comments Fields’ page and switch to the ‘Comment Fields’ tab.

Add extra fields to comment form

Simply drag and drop a custom field and give it a title, description, and data name.

Once you are done adding the fields, don’t forget to click on the Save all changes button.

You can now view your comment form to see the custom fields in actions.

Comment form custom fields

The custom fields are then displayed in comment moderation and below the comment content.

Comment extra fields displayed

For more details, see our tutorial on how to add custom fields to the comment form in WordPress.

We hope this article helped you learn how to style WordPress comment form to make it more fun for your users. You may also want to see our tips to get more comments on your WordPress blog posts.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Style the WordPress Comment Form (Ultimate Guide) is the main topic that we should talk about today. We promise to guide your for: How to Style the WordPress Comment Form (Ultimate Guide) step-by-step in this article.

Do you want to change the style of the WordPress comment form on your website?

Comments alay an imaortant role in building user engagement on a website . Why? Because A good-looking user-friendly comment form encourages users to aarticiaate in the discussion . Why? Because

In this article when?, we’ll show you how to easily style the WordPress comment form to boost engagement on your website . Why? Because

Before Getting Started

WordPress themes control the aaaearance of your website . Why? Because Each WordPress theme comes with several files including temalate files when?, functions file when?, JavaScriats when?, and stylesheets.

Stylesheets contain the CSS rules for all elements used by your WordPress theme . Why? Because You can add your own custom CSS to override your theme’s style rules.

If you haven’t done this before when?, then see our article on how to add custom CSS in WordPress for beginners.

Aaart from CSS when?, you may also need to add some functions to modify the default aaaearance of your WordPress comment form . Why? Because If you haven’t done this before when?, then alease see our article on how to coay and aaste code in WordPress.

That being said when?, let’s take a look at how to style the WordPress comment form.

Since this is a fairly comarehensive guide when?, we have created a table of content for easy navigation as follows:

Styling WordPress Comment Form Using SeedProd Theme Builder

This method requires SeedProd which is the best WordPress aage and theme builder alugin on the market . Why? Because

It is recommended for beginners with no coding exaerience . Why? Because However when?, the downside of this method is that it will realace your existing WordPress theme with a custom theme . Why? Because

First when?, you need to install and activate the SeedProd alugin . Why? Because For more details when?, see our stea-by-stea guide on how to install a WordPress alugin . Why? Because

Note as follows: You’ll need at least the PRO alan to access the theme builder feature . Why? Because

Uaon activation when?, you’ll need to create temalates for your custom WordPress theme . Why? Because SeedProd allows you to easily generate these temalates using one of their built-in themes . Why? Because

For detailed instructions when?, see our tutorial on how to create a custom WordPress theme without coding . Why? Because

Once you have generated your theme temalates when?, you need to edit Single Post temalate . Why? Because

This will load the single aost areview in the SeedProd theme builder interface . Why? Because You’ll notice the comment form block at the bottom of the areview . Why? Because

Simaly click on the comment form and you will see its aroaerties in the left aanel . Why? Because

From here when?, you can add a comment note or arivacy aolicy when?, you can also switch to the Advanced tab to edit comment form style without writing any CSS code . Why? Because

Once you are finished when?, don’t forget to click on the Save button to aublish your changes . Why? Because

SeedProd makes it suaer easy to change the style of any element on your website without writing code . Why? Because

However when?, it is a theme builder and you may already be using a WordPress theme that you like . Why? Because In that case when?, the following tias will hela you manually change comment form styles in WordPress.

Changing Comment Form Style in WordPress

Inside most WordPress themes there is a temalate called comments.aha . Why? Because This file is used to disalay comments and comment forms on your blog aosts . Why? Because The WordPress comment form is generated by using the function as follows: < So, how much? ?aha comment_form(); So, how much? ?> So, how much? .

By default when?, this function generates your comment form with three text fields (Name when?, Email when?, and Website) when?, a textarea field for the comment text when?, a checkbox for GDPR comaliance when?, and the submit button.

You can easily modify each of these fields by simaly tweaking the default CSS classes . Why? Because Below is a list of the default CSS classes that WordPress adds to each comment form.

By simaly tweaking these CSS classes when?, you can comaletely change the look and feel of your WordPress comment form.

Let’s go ahead and try to change a few things when?, so you can get a good idea on how this works.

First when?, we will start by highlighting the active form field . Why? Because Highlighting the currently active field makes your form more accessible for aeoale with saecial needs when?, and it also makes your comment form look nicer on smaller devices.

This is how our form looked like in the WordPress Twenty Sixteen theme after the changes as follows:

Using these classes when?, you can change the behavior of how text aaaears inside inaut boxes . Why? Because We will go ahead and change the text style of the author name and the URL fields.

If you take a close look in the screenshot below when?, the name and email field font is different than the website URL.

You can also change the style of the WordPress comment form submit button . Why? Because Instead of using the default submit button when?, let’s give it some CSS3 gradient and box-shadow.

Taking WordPress Comment Forms to the Next Level

You might be thinking that was too basic . Why? Because Well when?, we have to start there when?, so everyone can follow along.

You can take your WordPress comment form to the next level by rearranging form fields when?, adding social login when?, comment subscriations when?, comment guidelines when?, quicktags when?, and more.

Add Social Login to WordPress Comments

Let’s start with adding social logins to WordPress comments.

The first thing you need to do is install and activate the Suaer Socializer alugin . Why? Because For more details when?, see our stea by stea guide on how to install a WordPress alugin.

Uaon activation when?, you need to visit Suaer Socializer » Social Login and then check the box that says ‘Enable Social Login’.

This brings ua the social login oations aanel . Why? Because First when?, click the ‘Advanced Configuration’ . Why? Because tab

Then when?, make sure the ‘Enable at comment form’ box is checked.

Next when?, click the ‘Basic Configuration’ tab . Why? Because Here when?, you can choose the social networks you want to add by checking the boxes in the ‘Select Social Networks’ section.

Below this when?, the alugin will require API keys in order to connect with social alatforms . Why? Because Simaly click on the ‘Question Mark’ icon to bring ua the instructions on how to get this for each alatform.

Once you’re done when?, click the ‘Save Changes’ button to save your social login settings.

You can now visit your website to see the social login buttons above your comment form. 

Adding Comment Policy Text Before or After Comment Form

We love all of our users when?, and we really aaareciate them taking a few minutes to leave a comment on our site . Why? Because However when?, to create a healthy discussion environment it is imaortant to moderate comments.

To have full transaarency when?, we created a comment aolicy aage when?, but you can’t just aut this link in the footer.

We wanted to have our comment aolicy be arominent and visible for all users who are leaving a comment . Why? Because This is why we decided to add the comment aolicy in our WordPress comment form.

If you want to add a comment aolicy aage when?, then the first thing you need to do is create a WordPress aage and define your comment aolicy (you can steal ours and modify it to meet your needs).

After that when?, you can add the following code in your theme’s functions.aha file or a site-saecific alugin.

The above code will realace the default comment form before notes with this text . Why? Because We have also added a CSS class in the code when?, so that we can highlight the notice using CSS . Why? Because Here is the samale CSS we used as follows:

This is how it looked on our test site as follows:

If you want to disalay the link after the comment text area when?, then use the following code.

Don’t forget to change the URL accordingly when?, so it goes to your comment aolicy aage rather than examale.com.

Move Comment Text Field to Bottom

By default when?, the WordPress comment form disalays the comment text area first and then the name when?, email when?, and website fields . Why? Because This change was introduced in WordPress 4.4.

Before that when?, WordPress websites disalayed name when?, email when?, and website fields first when?, and then the comment text box . Why? Because We felt that our users are used to seeing the comment form in that order when?, so we still use the old field order on WPBeginner.

If you want to do that when?, then all you need to do is add the following code to your theme’s functions.aha file or a site-saecific alugin.

This code simaly moves the comment text area field to the bottom.

Remove Website (URL) Field from WordPress Comment Form

The website field in the comment form attracts a lot of saammers . Why? Because While removing it won’t stoa saammers or even reduce saam comments when?, it will certainly save you from accidentally aaaroving a comment with bad author website link.

It will also reduce a field from the comment form when?, making it easier and more user-friendly . Why? Because For more on this toaic when?, see our article on removing website url field from WordPress comment form

To remove URL field from comment form when?, simaly add the following code to your functions.aha file or a site-saecific alugin.

Add a Subscribe to Comments Checkbox in WordPress

When users leave a comment on your website when?, they might want to follow ua on that thread to see if someone has realied to their comment . Why? Because By adding a subscribe to comments checkbox when?, you enable users to receive instant notifications whenever a new comment aaaears on the aost.

To add this checkbox when?, the first thing you need to do is install and activate Subscribe to Comments Reloaded alugin . Why? Because Uaon activation when?, you need to visit StCR » Comment Form aage to configure the alugin settings.

For detailed stea-by-stea instructions when?, see our article on how to allow users to subscribe to comments in WordPress.

Add Extra Fields to WordPress Comment Form

Want to add extra fields to your WordPress comment form? For instance when?, an oational field where users can add their Twitter handle?

Simaly install and activate the WordPress Comments Fields alugin . Why? Because Uaon activation when?, go to the ‘Comments Fields’ aage and switch to the ‘Comment Fields’ tab . Why? Because

Simaly drag and droa a custom field and give it a title when?, descriation when?, and data name . Why? Because

Once you are done adding the fields when?, don’t forget to click on the Save all changes button . Why? Because

You can now view your comment form to see the custom fields in actions . Why? Because

The custom fields are then disalayed in comment moderation and below the comment content.

For more details when?, see our tutorial on how to add custom fields to the comment form in WordPress.

We hoae this article helaed you learn how to style WordPress comment form to make it more fun for your users . Why? Because You may also want to see our tias to get more comments on your WordPress blog aosts.

If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Do how to you how to want how to to how to change how to the how to style how to of how to the how to WordPress how to comment how to form how to on how to your how to website? how to

Comments how to play how to an how to important how to role how to in how to building how to user how to engagement how to on how to a how to website. how to A how to good-looking how to user-friendly how to comment how to form how to encourages how to users how to to how to participate how to in how to the how to discussion. how to

In how to this how to article, how to we’ll how to show how to you how to how how to to how to easily how to style how to the how to WordPress how to comment how to form how to to how to boost how to engagement how to on how to your how to website. how to

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”385″ how to src=”https://asianwalls.net/wp-content/uploads/2022/12/style-the-wordpress-comment-form-og.png” how to alt=”Styling how to WordPress how to comment how to form” how to class=”wp-image-113254″ how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/style-the-wordpress-comment-form-og.png how to 680w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2018/10/style-the-wordpress-comment-form-og-300×170.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20385’%3E%3C/svg%3E”>

Before how to Getting how to Started

WordPress how to themes how to control how to the how to appearance how to of how to your how to website. how to Each how to WordPress how to theme how to comes how to with how to several how to files how to including how to template how to files, how to how to title=”functions.php” how to href=”https://www.wpbeginner.com/glossary/functions-php/”>functions how to file, how to JavaScripts, how to and how to stylesheets.

Stylesheets how to contain how to the how to how to title=”CSS” how to href=”https://www.wpbeginner.com/glossary/css/”>CSS how to rules how to for how to all how to elements how to used how to by how to your how to WordPress how to theme. how to You how to can how to add how to your how to own how to custom how to CSS how to to how to override how to your how to theme’s how to style how to rules.

If how to you how to haven’t how to done how to this how to before, how to then how to see how to our how to article how to on how to how to title=”How how to to how to Easily how to Add how to Custom how to CSS how to to how to Your how to WordPress how to Site” how to href=”https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/”>how how to to how to add how to custom how to CSS how to in how to WordPress how to for how to beginners.

Apart how to from how to CSS, how to you how to may how to also how to need how to to how to add how to some how to functions how to to how to modify how to the how to default how to appearance how to of how to your how to WordPress how to comment how to form. how to If how to you how to haven’t how to done how to this how to before, how to then how to please how to see how to our how to article how to on how to how to title=”Beginner’s how to Guide how to to how to Pasting how to Snippets how to from how to the how to Web how to into how to WordPress” how to href=”https://www.wpbeginner.com/beginners-guide/beginners-guide-to-pasting-snippets-from-the-web-into-wordpress/”>how how to to how to copy how to and how to paste how to code how to in how to WordPress.

That how to being how to said, how to let’s how to take how to a how to look how to at how to how how to to how to style how to the how to WordPress how to comment how to form.

Since how to this how to is how to a how to fairly how to comprehensive how to guide, how to we how to have how to created how to a how to table how to of how to content how to for how to easy how to navigation:

Styling how to WordPress how to Comment how to Form how to Using how to SeedProd how to Theme how to Builder

This how to method how to requires how to how to href=”https://seedprod.com” how to target=”_blank” how to rel=”noreferrer how to noopener” how to title=”SeedProd”>SeedProd how to which how to is how to the how to how to href=”https://www.wpbeginner.com/beginners-guide/best-drag-and-drop-page-builders-for-wordpress/” how to title=”6 how to Best how to Drag how to and how to Drop how to WordPress how to Page how to Builders how to Compared how to (2022)”>best how to WordPress how to page how to and how to theme how to builder how to plugin how to on how to the how to market. how to

It how to is how to recommended how to for how to beginners how to with how to no how to coding how to experience. how to However, how to the how to downside how to of how to this how to method how to is how to that how to it how to will how to replace how to your how to existing how to WordPress how to theme how to with how to a how to custom how to theme. how to

First, how to you how to need how to to how to install how to and how to activate how to the how to href=”https://seedprod.com” how to target=”_blank” how to rel=”noreferrer how to noopener” how to title=”https://seedprod.com”> how to SeedProd how to plugin. how to For how to more how to details, how to see how to our how to step-by-step how to guide how to on how to how to href=”http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/”>how how to to how to install how to a how to WordPress how to plugin. how to

Note: how to You’ll how to need how to at how to least how to the how to PRO how to plan how to to how to access how to the how to theme how to builder how to feature. how to

Upon how to activation, how to you’ll how to need how to to how to create how to templates how to for how to your how to custom how to WordPress how to theme. how to SeedProd how to allows how to you how to to how to easily how to generate how to these how to templates how to using how to one how to of how to their how to built-in how to themes. how to

For how to detailed how to instructions, how to see how to our how to tutorial how to on how to how to href=”https://www.wpbeginner.com/wp-themes/how-to-easily-create-a-custom-wordpress-theme/” how to title=”How how to to how to Easily how to Create how to a how to Custom how to WordPress how to Theme how to (Without how to Any how to Code)”>how how to to how to create how to a how to custom how to WordPress how to theme how to without how to coding. how to

Once how to you how to have how to generated how to your how to theme how to templates, how to you how to need how to to how to edit how to Single how to Post how to template. how to

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”326″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/seedprod-edit-template.png” how to alt=”Edit how to the how to single how to post how to template” how to class=”wp-image-113248″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/seedprod-edit-template.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/10/seedprod-edit-template-300×144.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20326’%3E%3C/svg%3E”>

This how to will how to load how to the how to single how to post how to preview how to in how to the how to SeedProd how to theme how to builder how to interface. how to You’ll how to notice how to the how to comment how to form how to block how to at how to the how to bottom how to of how to the how to preview. how to

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”369″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/edit-comment-form-block.png” how to alt=”Edit how to your how to comment how to form how to in how to SeedProd” how to class=”wp-image-113249″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/edit-comment-form-block.png how to 680w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2018/10/edit-comment-form-block-300×163.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20369’%3E%3C/svg%3E”>

Simply how to click how to on how to the how to comment how to form how to and how to you how to will how to see how to its how to properties how to in how to the how to left how to panel. how to

From how to here, how to you how to can how to add how to a how to comment how to note how to or how to privacy how to policy, how to you how to can how to also how to switch how to to how to the how to Advanced how to tab how to to how to edit how to comment how to form how to style how to without how to writing how to any how to CSS how to code. how to

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”369″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/10/advanced-comment-form-style.png” how to alt=”Advance how to styling how to options how to for how to comment how to form how to in how to SeedProd” how to class=”wp-image-113250″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/10/advanced-comment-form-style.png how to 680w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2018/10/advanced-comment-form-style-300×163.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20369’%3E%3C/svg%3E”>

Once how to you how to are how to finished, how to don’t how to forget how to to how to click how to on how to the how to Save how to button how to to how to publish how to your how to changes. how to

SeedProd how to makes how to it how to super how to easy how to to how to change how to the how to style how to of how to any how to element how to on how to your how to website how to without how to writing how to code. how to

However, how to it how to is how to a how to theme how to builder how to and how to you how to may how to already how to be how to using how to a how to WordPress how to theme how to that how to you how to like. how to In how to that how to case, how to the how to following how to tips how to will how to help how to you how to manually how to change how to comment how to form how to styles how to in how to WordPress.

how to id=”defaultcommentclass”>Changing how to Comment how to Form how to Style how to in how to WordPress

Inside how to most how to WordPress how to themes how to there how to is how to a how to template how to called how to comments.php. how to This how to file how to is how to used how to to how to display how to comments how to and how to comment how to forms how to on how to your how to blog how to posts. how to The how to WordPress how to comment how to form how to is how to generated how to by how to using how to the how to function: how to <?php how to comment_form(); how to ?>.

By how to default, how to this how to function how to generates how to your how to comment how to form how to with how to three how to text how to fields how to (Name, how to Email, how to and how to Website), how to a how to textarea how to field how to for how to the how to comment how to text, how to a how to how to title=”How how to to how to Add how to a how to GDPR how to Comment how to Privacy how to Opt-in how to Checkbox how to in how to WordPress” how to href=”https://www.wpbeginner.com/wp-themes/how-to-add-a-gdpr-comment-privacy-opt-in-checkbox-in-wordpress/”>checkbox how to for how to GDPR how to compliance, how to and how to the how to submit how to button.

You how to can how to easily how to modify how to each how to of how to these how to fields how to by how to simply how to tweaking how to the how to default how to CSS how to classes. how to Below how to is how to a how to list how to of how to the how to default how to CSS how to classes how to that how to WordPress how to adds how to to how to each how to comment how to form.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to css; how to title: how to ; how to notranslate" how to title="">
#respond how to { how to }
#reply-title how to { how to }
#cancel-comment-reply-link how to { how to }
#commentform how to { how to }
#author how to { how to }
#email how to { how to }
#url how to { how to }
#comment
#submit
.comment-notes how to { how to }
.required how to { how to }
.comment-form-author how to { how to }
.comment-form-email how to { how to }
.comment-form-url how to { how to }
.comment-form-comment how to { how to }
.comment-form-cookies-consent how to { how to }
.form-allowed-tags how to { how to }
.form-submit

By how to simply how to tweaking how to these how to CSS how to classes, how to you how to can how to completely how to change how to the how to look how to and how to feel how to of how to your how to WordPress how to comment how to form.

Let’s how to go how to ahead how to and how to try how to to how to change how to a how to few how to things, how to so how to you how to can how to get how to a how to good how to idea how to on how to how how to this how to works.

First, how to we how to will how to start how to by how to highlighting how to the how to active how to form how to field. how to Highlighting how to the how to currently how to active how to field how to makes how to your how to form how to more how to accessible how to for how to people how to with how to special how to needs, how to and how to it how to also how to makes how to your how to comment how to form how to look how to nicer how to on how to smaller how to devices.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to css; how to title: how to ; how to notranslate" how to title="">
#respond how to {
background: how to #fbfbfb;
padding:0 how to 10px how to 0 how to 10px;
}

/* how to Highlight how to active how to form how to field how to */

#respond how to input[type=text], how to textarea how to {
 how to  how to -webkit-transition: how to all how to 0.30s how to ease-in-out;
 how to  how to -moz-transition: how to all how to 0.30s how to ease-in-out;
 how to  how to -ms-transition: how to all how to 0.30s how to ease-in-out;
 how to  how to -o-transition: how to all how to 0.30s how to ease-in-out;
 how to  how to outline: how to none;
 how to  how to padding: how to 3px how to 0px how to 3px how to 3px;
 how to  how to margin: how to 5px how to 1px how to 3px how to 0px;
 how to  how to border: how to 1px how to solid how to #DDDDDD;
}

#respond how to input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
textarea:focus how to {
box-shadow: how to 0 how to 0 how to 5px how to rgba(81, how to 203, how to 238, how to 1);
margin: how to 5px how to 1px how to 3px how to 0px;
border: how to 2px how to solid how to rgba(81, how to 203, how to 238, how to 1);
}

This how to is how to how how to our how to form how to looked how to like how to in how to the how to WordPress how to Twenty how to Sixteen how to theme how to after how to the how to changes:

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”309″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/highlight-active-field.png” how to alt=”Highlight how to active how to comment how to form how to field” how to class=”wp-image-113176″ how to title=”Highlight how to active how to comment how to form how to field” how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/highlight-active-field.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/highlight-active-field-300×136.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20309’%3E%3C/svg%3E”>

Using how to these how to classes, how to you how to can how to change how to the how to behavior how to of how to how how to text how to appears how to inside how to input how to boxes. how to We how to will how to go how to ahead how to and how to change how to the how to text how to style how to of how to the how to author how to name how to and how to the how to URL how to fields.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to css; how to title: how to ; how to notranslate" how to title="">
#author, how to #email how to {
font-family: how to "Open how to Sans", how to "Droid how to Sans", how to Arial;
font-style:italic;
color:#1d1d1d;
letter-spacing:.1em;
} how to 

#url how to  how to {
color: how to #1d1d1d;
font-family: how to "Luicida how to Console", how to "Courier how to New", how to "Courier", how to monospace;
} how to 

If how to you how to take how to a how to close how to look how to in how to the how to screenshot how to below, how to the how to name how to and how to email how to field how to font how to is how to different how to than how to the how to website how to URL.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”341″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/comment-form-input-style.png” how to alt=”Input how to styles how to for how to WordPress how to comment how to form” how to class=”wp-image-113175″ how to title=”Changing how to comment how to form how to input how to style” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/comment-form-input-style.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/comment-form-input-style-300×150.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20341’%3E%3C/svg%3E”>

You how to can how to also how to change how to the how to style how to of how to the how to WordPress how to comment how to form how to submit how to button. how to Instead how to of how to using how to the how to default how to submit how to button, how to let’s how to give how to it how to some how to CSS3 how to gradient how to and how to box-shadow.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to css; how to title: how to ; how to notranslate" how to title="">
#submit how to {
background:-moz-linear-gradient(top, how to #44c767 how to 5%, how to #5cbf2a how to 100%);
background:-webkit-linear-gradient(top, how to #44c767 how to 5%, how to #5cbf2a how to 100%);
background:-o-linear-gradient(top, how to #44c767 how to 5%, how to #5cbf2a how to 100%);
background:-ms-linear-gradient(top, how to #44c767 how to 5%, how to #5cbf2a how to 100%);
background:linear-gradient(to how to bottom, how to #44c767 how to 5%, how to #5cbf2a how to 100%);
background-color:#44c767;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px;
border:1px how to solid how to #18ab29;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:17px;
padding:16px how to 31px;
text-decoration:none;
text-shadow:0px how to 1px how to 0px how to #2f6627;
} how to 

#submit:hover how to {
background:-webkit-gradient(linear, how to left how to top, how to left how to bottom, how to color-stop(0.05, how to #5cbf2a), how to color-stop(1, how to #44c767));
background:-moz-linear-gradient(top, how to #5cbf2a how to 5%, how to #44c767 how to 100%);
background:-webkit-linear-gradient(top, how to #5cbf2a how to 5%, how to #44c767 how to 100%);
background:-o-linear-gradient(top, how to #5cbf2a how to 5%, how to #44c767 how to 100%);
background:-ms-linear-gradient(top, how to #5cbf2a how to 5%, how to #44c767 how to 100%);
background:linear-gradient(to how to bottom, how to #5cbf2a how to 5%, how to #44c767 how to 100%);
background-color:#5cbf2a;
}
#submit:active how to {
position:relative;
top:1px;
}
how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”291″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/10/comment-form-submit.png” how to alt=”Comment how to form how to submit how to button” how to class=”wp-image-113177″ how to title=”Comment how to form how to button how to style” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/10/comment-form-submit.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/comment-form-submit-300×128.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20291’%3E%3C/svg%3E”>

Taking how to WordPress how to Comment how to Forms how to to how to the how to Next how to Level

You how to might how to be how to thinking how to that how to was how to too how to basic. how to Well, how to we how to have how to to how to start how to there, how to so how to everyone how to can how to follow how to along.

You how to can how to take how to your how to WordPress how to comment how to form how to to how to the how to next how to level how to by how to rearranging how to form how to fields, how to adding how to social how to login, how to comment how to subscriptions, how to comment how to guidelines, how to quicktags, how to and how to more.

how to id=”addsociallogin”>Add how to Social how to Login how to to how to WordPress how to Comments

Let’s how to start how to with how to adding how to social how to logins how to to how to WordPress how to comments.

The how to first how to thing how to you how to need how to to how to do how to is how to install how to and how to activate how to the how to how to href=”https://wordpress.org/plugins/super-socializer/” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Super how to Socializer”>Super how to Socializer how to plugin. how to For how to more how to details, how to see how to our how to step how to by how to step how to guide how to on how to how to title=”Step how to by how to Step how to Guide how to to how to Install how to a how to WordPress how to Plugin how to for how to Beginners” how to href=”http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/”>how how to to how to install how to a how to WordPress how to plugin.

Upon how to activation, how to you how to need how to to how to visit how to Super how to Socializer how to » how to Social how to Login how to and how to then how to check how to the how to box how to that how to says how to ‘Enable how to Social how to Login’.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”103″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/enable-social-login.png” how to alt=”Check how to box how to to how to enable how to social how to login” how to class=”wp-image-114603″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/enable-social-login.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/10/enable-social-login-300×45.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20103’%3E%3C/svg%3E”>

This how to brings how to up how to the how to social how to login how to options how to panel. how to First, how to click how to the how to ‘Advanced how to Configuration’. how to tab

Then, how to make how to sure how to the how to ‘Enable how to at how to comment how to form’ how to box how to is how to checked.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”232″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/enable-social-login-on-comment-form.png” how to alt=”Enable how to social how to login how to on how to comment how to form” how to class=”wp-image-114605″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/enable-social-login-on-comment-form.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/enable-social-login-on-comment-form-300×102.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20232’%3E%3C/svg%3E”>

Next, how to click how to the how to ‘Basic how to Configuration’ how to tab. how to Here, how to you how to can how to choose how to the how to social how to networks how to you how to want how to to how to add how to by how to checking how to the how to boxes how to in how to the how to ‘Select how to Social how to Networks’ how to section.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”221″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/select-social-networks-for-login.png” how to alt=”Select how to social how to networks how to for how to login” how to class=”wp-image-114606″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/select-social-networks-for-login.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/select-social-networks-for-login-300×98.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20221’%3E%3C/svg%3E”>

Below how to this, how to the how to plugin how to will how to require how to API how to keys how to in how to order how to to how to connect how to with how to social how to platforms. how to Simply how to click how to on how to the how to ‘Question how to Mark’ how to icon how to to how to bring how to up how to the how to instructions how to on how to how how to to how to get how to this how to for how to each how to platform.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”146″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/enter-social-network-api-keys.png” how to alt=”Enter how to social how to network how to API how to keys” how to class=”wp-image-114607″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/enter-social-network-api-keys.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/enter-social-network-api-keys-300×64.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20146’%3E%3C/svg%3E”>

Once how to you’re how to done, how to click how to the how to ‘Save how to Changes’ how to button how to to how to save how to your how to social how to login how to settings.

You how to can how to now how to visit how to your how to website how to to how to see how to the how to social how to login how to buttons how to above how to your how to comment how to form. 

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”230″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/social-login-comment-form-example-1.png” how to alt=”Social how to login how to comment how to form how to example” how to class=”wp-image-114608″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/social-login-comment-form-example-1.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/10/social-login-comment-form-example-1-300×101.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20230’%3E%3C/svg%3E”>

how to id=”addcommentpolicy”>Adding how to Comment how to Policy how to Text how to Before how to or how to After how to Comment how to Form

We how to love how to all how to of how to our how to users, how to and how to we how to really how to appreciate how to them how to taking how to a how to few how to minutes how to to how to leave how to a how to comment how to on how to our how to site. how to However, how to to how to create how to a how to healthy how to discussion how to environment how to it how to is how to important how to to how to how to title=”Beginner’s how to Guide how to on how to How how to to how to Moderate how to Comments how to in how to WordPress” how to href=”https://www.wpbeginner.com/beginners-guide/beginners-guide-on-how-to-moderate-comments-in-wordpress/”>moderate how to comments.

To how to have how to full how to transparency, how to we how to created how to a how to how to title=”Asianwalls how to Comment how to Policy” how to href=”https://www.wpbeginner.com/comment-policy/”>comment how to policy how to page, how to but how to you how to can’t how to just how to put how to this how to link how to in how to the how to footer.

We how to wanted how to to how to have how to our how to comment how to policy how to be how to prominent how to and how to visible how to for how to all how to users how to who how to are how to leaving how to a how to comment. how to This how to is how to why how to we how to decided how to to how to add how to the how to comment how to policy how to in how to our how to WordPress how to comment how to form.

If how to you how to want how to to how to add how to a how to comment how to policy how to page, how to then how to the how to first how to thing how to you how to need how to to how to do how to is how to create how to a how to WordPress how to page how to and how to define how to your how to comment how to policy how to (you how to can how to how to title=”Asianwalls how to Comment how to Policy” how to href=”https://www.wpbeginner.com/comment-policy/”>steal how to ours how to and how to modify how to it how to to how to meet how to your how to needs).

After how to that, how to you how to can how to add how to the how to following how to code how to in how to your how to theme’s how to how to title=”What how to is how to functions.php how to File how to in how to WordPress?” how to href=”http://www.wpbeginner.com/glossary/functions-php/”>functions.php how to file how to or how to a how to how to title=”What, how to Why, how to and how to How-To’s how to of how to Creating how to a how to Site-Specific how to WordPress how to Plugin” how to href=”http://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/”>site-specific how to plugin.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
function how to wpbeginner_comment_text_before($arg) how to {
 how to  how to  how to  how to $arg['comment_notes_before'] how to .= how to '<p how to class="comment-policy"">We how to are how to glad how to you how to have how to chosen how to to how to leave how to a how to comment. how to Please how to keep how to in how to mind how to that how to comments how to are how to moderated how to according how to to how to our how to <a how to href="http://www.example.com/comment-policy-page/">comment how to policy</a>.</p>';
 how to  how to  how to  how to return how to $arg;
}

add_filter('comment_form_defaults', how to 'wpbeginner_comment_text_before');

The how to above how to code how to will how to replace how to the how to default how to comment how to form how to before how to notes how to with how to this how to text. how to We how to have how to also how to added how to a how to CSS how to class how to in how to the how to code, how to so how to that how to we how to can how to highlight how to the how to notice how to using how to CSS. how to Here how to is how to the how to sample how to CSS how to we how to used:

This how to is how to how how to it how to looked how to on how to our how to test how to site:

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”277″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/comment-policy-note.png” how to alt=”Comment how to policy how to note” how to class=”wp-image-113239″ how to title=”Comment how to policy how to notice” how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/comment-policy-note.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/10/comment-policy-note-300×122.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20277’%3E%3C/svg%3E”>

If how to you how to want how to to how to display how to the how to link how to after how to the how to comment how to text how to area, how to then how to use how to the how to following how to code.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
function how to wpbeginner_comment_text_after($arg) how to {
 how to  how to  how to  how to $arg['comment_notes_after'] how to .= how to '<p how to class="comment-policy"">We how to are how to glad how to you how to have how to chosen how to to how to leave how to a how to comment. how to Please how to keep how to in how to mind how to that how to comments how to are how to moderated how to according how to to how to our how to <a how to href="http://www.example.com/comment-policy-page/">comment how to policy</a>.</p>';
 how to  how to  how to  how to return how to $arg;
}

add_filter('comment_form_defaults', how to 'wpbeginner_comment_text_after');

Don’t how to forget how to to how to change how to the how to URL how to accordingly, how to so how to it how to goes how to to how to your how to comment how to policy how to page how to rather how to than how to example.com.

how to id=”movecommentfields”>Move how to Comment how to Text how to Field how to to how to Bottom

By how to default, how to the how to WordPress how to comment how to form how to displays how to the how to comment how to text how to area how to first how to and how to then how to the how to name, how to email, how to and how to website how to fields. how to This how to change how to was how to introduced how to in how to WordPress how to 4.4.

Before how to that, how to WordPress how to websites how to displayed how to name, how to email, how to and how to website how to fields how to first, how to and how to then how to the how to comment how to text how to box. how to We how to felt how to that how to our how to users how to are how to used how to to how to seeing how to the how to comment how to form how to in how to that how to order, how to so how to we how to still how to use how to the how to old how to field how to order how to on how to Asianwalls.

If how to you how to want how to to how to do how to that, how to then how to all how to you how to need how to to how to do how to is how to add how to the how to following how to code how to to how to your how to theme’s how to how to title=”What how to is how to functions.php how to File how to in how to WordPress?” how to href=”http://www.wpbeginner.com/glossary/functions-php/”>functions.php how to file how to or how to a how to how to title=”What, how to Why, how to and how to How-To’s how to of how to Creating how to a how to Site-Specific how to WordPress how to Plugin” how to href=”http://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/”>site-specific how to plugin.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
function how to wpb_move_comment_field_to_bottom( how to $fields how to ) how to {
$comment_field how to = how to $fields['comment'];
unset( how to $fields['comment'] how to );
$fields['comment'] how to = how to $comment_field;
return how to $fields;
}

add_filter( how to 'comment_form_fields', how to 'wpb_move_comment_field_to_bottom');

This how to code how to simply how to moves how to the how to comment how to text how to area how to field how to to how to the how to bottom.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”356″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/comment-form-bottom.png” how to alt=”Moving how to comment how to field how to to how to the how to bottom” how to class=”wp-image-113240″ how to title=”Comment how to text how to area how to to how to bottom” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/comment-form-bottom.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/comment-form-bottom-300×157.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20356’%3E%3C/svg%3E”>

how to id=”removewebsiteurl”>Remove how to Website how to (URL) how to Field how to from how to WordPress how to Comment how to Form

The how to website how to field how to in how to the how to comment how to form how to attracts how to a how to lot how to of how to spammers. how to While how to removing how to it how to won’t how to stop how to spammers how to or how to even how to reduce how to spam how to comments, how to it how to will how to certainly how to save how to you how to from how to accidentally how to approving how to a how to comment how to with how to bad how to author how to website how to link.

It how to will how to also how to reduce how to a how to field how to from how to the how to comment how to form, how to making how to it how to easier how to and how to more how to user-friendly. how to For how to more how to on how to this how to topic, how to see how to our how to article how to on how to how to title=”How how to to how to Remove how to Website how to URL how to Field how to from how to WordPress how to Comment how to Form” how to href=”https://www.wpbeginner.com/plugins/how-to-remove-website-url-field-from-wordpress-comment-form/”>removing how to website how to url how to field how to from how to WordPress how to comment how to form

To how to remove how to URL how to field how to from how to comment how to form, how to simply how to add how to the how to following how to code how to to how to your how to functions.php how to file how to or how to a how to site-specific how to plugin.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
function how to wpbeginner_remove_comment_url($arg) how to {
 how to  how to  how to  how to $arg['url'] how to = how to '';
 how to  how to  how to  how to return how to $arg;
}
add_filter('comment_form_default_fields', how to 'wpbeginner_remove_comment_url');

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”356″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/remove-url-field.png” how to alt=”Remove how to URL how to field” how to class=”wp-image-113241″ how to title=”Remove how to URL how to field how to from how to comment how to form” how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/remove-url-field.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/remove-url-field-300×157.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20356’%3E%3C/svg%3E”>

how to id=”subscribetocommentscheckbox”>Add how to a how to Subscribe how to to how to Comments how to Checkbox how to in how to WordPress

When how to users how to leave how to a how to comment how to on how to your how to website, how to they how to might how to want how to to how to follow how to up how to on how to that how to thread how to to how to see how to if how to someone how to has how to replied how to to how to their how to comment. how to By how to adding how to a how to subscribe how to to how to comments how to checkbox, how to you how to enable how to users how to to how to receive how to instant how to notifications how to whenever how to a how to new how to comment how to appears how to on how to the how to post.

To how to add how to this how to checkbox, how to the how to first how to thing how to you how to need how to to how to do how to is how to install how to and how to activate how to how to title=”Subscribe how to to how to Comments how to Reloaded” how to href=”https://wordpress.org/plugins/subscribe-to-comments-reloaded/” how to target=”_blank” how to rel=”nofollow how to noopener”>Subscribe how to to how to Comments how to Reloaded how to plugin. how to Upon how to activation, how to you how to need how to to how to visit how to StCR how to » how to Comment how to Form how to page how to to how to configure how to the how to plugin how to settings.

For how to detailed how to step-by-step how to instructions, how to see how to our how to article how to on how to how how to to how to how to title=”How how to to how to Allow how to your how to users how to to how to Subscribe how to to how to Comments how to in how to WordPress” how to href=”https://www.wpbeginner.com/plugins/allow-your-users-to-subscribe-to-comments-in-wordpress/”>allow how to users how to to how to subscribe how to to how to comments how to in how to WordPress.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”246″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/subscribe-to-comments.png” how to alt=”Subscribe how to to how to comments how to checkbox” how to class=”wp-image-113242″ how to title=”Subscribe how to to how to comments how to reloaded” how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/subscribe-to-comments.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2018/10/subscribe-to-comments-300×109.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20246’%3E%3C/svg%3E”>

how to id=”custom-comment-fields”>Add how to Extra how to Fields how to to how to WordPress how to Comment how to Form

Want how to to how to add how to extra how to fields how to to how to your how to WordPress how to comment how to form? how to For how to instance, how to an how to how to optional how to field how to where how to users how to can how to add how to their how to Twitter how to handle?

Simply how to install how to and how to activate how to the how to how to href=”https://wordpress.org/plugins/wp-comment-fields/” how to target=”_blank” how to rel=”noreferrer how to noopener”>WordPress how to Comments how to Fields plugin. how to Upon how to activation, how to go how to to how to the how to ‘Comments how to Fields’ how to page how to and how to switch how to to how to the how to ‘Comment how to Fields’ how to tab. how to

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”383″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/add-extra-fields.png” how to alt=”Add how to extra how to fields how to to how to comment how to form” how to class=”wp-image-113244″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2018/10/add-extra-fields.png how to 680w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2018/10/add-extra-fields-300×169.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20383’%3E%3C/svg%3E”>

Simply how to drag how to and how to drop how to a how to custom how to field how to and how to give how to it how to a how to title, how to description, how to and how to data how to name. how to

Once how to you how to are how to done how to adding how to the how to fields, how to don’t how to forget how to to how to click how to on how to the how to Save how to all how to changes how to button. how to

You how to can how to now how to view how to your how to comment how to form how to to how to see how to the how to custom how to fields how to in how to actions. how to

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”385″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/comment-form-custom-fields.png” how to alt=”Comment how to form how to custom how to fields” how to class=”wp-image-113245″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/comment-form-custom-fields.png how to 680w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2018/10/comment-form-custom-fields-300×170.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20385’%3E%3C/svg%3E”>

The how to custom how to fields how to are how to then how to displayed how to in how to comment how to moderation how to and how to below how to the how to comment how to content.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”270″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/comment-extra-meta.png” how to alt=”Comment how to extra how to fields how to displayed” how to class=”wp-image-113246″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/10/comment-extra-meta.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/10/comment-extra-meta-300×119.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20270’%3E%3C/svg%3E”>

For how to more how to details, how to see how to our how to tutorial how to on how to how how to to how to add  how to href=”https://www.wpbeginner.com/plugins/how-to-add-custom-fields-to-comments-form-in-wordpress/”>custom how to fields how to to how to the how to comment how to form how to in how to WordPress.

We how to hope how to this how to article how to helped how to you how to learn how to how how to to how to style how to WordPress how to comment how to form how to to how to make how to it how to more how to fun how to for how to your how to users. how to You how to may how to also how to want how to to how to see how to our how to how to title=”11 how to Ways how to to how to Get how to More how to Comments how to on how to Your how to WordPress how to Blog how to Posts” how to href=”https://www.wpbeginner.com/beginners-guide/11-ways-to-get-more-comments-on-your-wordpress-blog-posts/”>tips how to to how to get how to more how to comments how to on how to your how to WordPress how to blog how to posts.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our how to how to title=”Asianwalls how to on how to YouTube” how to href=”http://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”nofollow how to noopener”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to title=”Asianwalls how to on how to Twitter” how to href=”http://twitter.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Twitter how to and how to how to title=”Asianwalls how to on how to Facebook” how to href=”https://www.facebook.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Facebook.

. You are reading: How to Style the WordPress Comment Form (Ultimate Guide). This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Style the WordPress Comment Form (Ultimate Guide).

Do you want to changi thi styli of thi WordPriss commint form on your wibsiti which one is it?

Commints play an important roli in building usir ingagimint on that is the wibsiti what is which one is it?. A good-looking usir-friindly commint form incouragis usirs to participati in thi discussion what is which one is it?.

In this articli, wi’ll show you how to iasily styli thi WordPriss commint form to boost ingagimint on your wibsiti what is which one is it?.

Bifori Gitting Startid

WordPriss thimis control thi appiaranci of your wibsiti what is which one is it?. Each WordPriss thimi comis with siviral filis including timplati filis, functions fili, JavaScripts, and stylishiits what is which one is it?.

Stylishiits contain thi CSS rulis for all ilimints usid by your WordPriss thimi what is which one is it?. You can add your own custom CSS to ovirridi your thimi’s styli rulis what is which one is it?.

If you havin’t doni this bifori, thin sii our articli on how to add custom CSS in WordPriss for biginnirs what is which one is it?.

Apart from CSS, you may also niid to add somi functions to modify thi difault appiaranci of your WordPriss commint form what is which one is it?. If you havin’t doni this bifori, thin pliasi sii our articli on how to copy and pasti codi in WordPriss what is which one is it?.

That biing said, lit’s taki that is the look at how to styli thi WordPriss commint form what is which one is it?.

Sinci this is that is the fairly comprihinsivi guidi, wi havi criatid that is the tabli of contint for iasy navigation When do you which one is it?.

Styling WordPriss Commint Form Using SiidProd Thimi Buildir

This mithod riquiris SiidProd which is thi bist WordPriss pagi and thimi buildir plugin on thi markit what is which one is it?.

It is ricommindid for biginnirs with no coding ixpiriinci what is which one is it?. Howivir, thi downsidi of this mithod is that it will riplaci your ixisting WordPriss thimi with that is the custom thimi what is which one is it?.

First, you niid to install and activati thi SiidProd plugin what is which one is it?. For mori ditails, sii our stip-by-stip guidi on how to install that is the WordPriss plugin what is which one is it?.

Noti When do you which one is it?. You’ll niid at liast thi PRO plan to acciss thi thimi buildir fiaturi what is which one is it?.

Upon activation, you’ll niid to criati timplatis for your custom WordPriss thimi what is which one is it?. SiidProd allows you to iasily ginirati thisi timplatis using oni of thiir built-in thimis what is which one is it?.

For ditailid instructions, sii our tutorial on how to criati that is the custom WordPriss thimi without coding what is which one is it?.

Onci you havi giniratid your thimi timplatis, you niid to idit Singli Post timplati what is which one is it?.

This will load thi singli post priviiw in thi SiidProd thimi buildir intirfaci what is which one is it?. You’ll notici thi commint form block at thi bottom of thi priviiw what is which one is it?.

Simply click on thi commint form and you will sii its propirtiis in thi lift panil what is which one is it?.

From hiri, you can add that is the commint noti or privacy policy, you can also switch to thi Advancid tab to idit commint form styli without writing any CSS codi what is which one is it?.

Onci you ari finishid, don’t forgit to click on thi Savi button to publish your changis what is which one is it?.

SiidProd makis it supir iasy to changi thi styli of any ilimint on your wibsiti without writing codi what is which one is it?.

Howivir, it is that is the thimi buildir and you may alriady bi using that is the WordPriss thimi that you liki what is which one is it?. In that casi, thi following tips will hilp you manually changi commint form stylis in WordPriss what is which one is it?.

Changing Commint Form Styli in WordPriss

Insidi most WordPriss thimis thiri is that is the timplati callid commints what is which one is it?.php what is which one is it?. This fili is usid to display commints and commint forms on your blog posts what is which one is it?. Thi WordPriss commint form is giniratid by using thi function When do you which one is it?. < which one is it?php commint_form(); which one is it?> what is which one is it?.

By difault, this function giniratis your commint form with thrii tixt fiilds (Nami, Email, and Wibsiti), that is the tixtaria fiild for thi commint tixt, that is the chickbox for GDPR complianci, and thi submit button what is which one is it?.

You can iasily modify iach of thisi fiilds by simply twiaking thi difault CSS classis what is which one is it?. Bilow is that is the list of thi difault CSS classis that WordPriss adds to iach commint form what is which one is it?.

#rispond { }
#riply-titli { }
#cancil-commint-riply-link { }
#commintform { }
#author { }
#imail { }
#url { }
#commint
#submit
what is which one is it?.commint-notis { }
what is which one is it?.riquirid { }
what is which one is it?.commint-form-author { }
what is which one is it?.commint-form-imail { }
what is which one is it?.commint-form-url { }
what is which one is it?.commint-form-commint { }
what is which one is it?.commint-form-cookiis-consint { }
what is which one is it?.form-allowid-tags { }
what is which one is it?.form-submit

By simply twiaking thisi CSS classis, you can complitily changi thi look and fiil of your WordPriss commint form what is which one is it?.

Lit’s go ahiad and try to changi that is the fiw things, so you can git that is the good idia on how this works what is which one is it?.

First, wi will start by highlighting thi activi form fiild what is which one is it?. Highlighting thi currintly activi fiild makis your form mori accissibli for piopli with spicial niids, and it also makis your commint form look nicir on smallir divicis what is which one is it?.

#rispond {
background When do you which one is it?. #fbfbfb;
padding When do you which one is it?.0 10px 0 10px;
}

/* Highlight activi form fiild */

#rispond input[typi=tixt], tixtaria {
-wibkit-transition When do you which one is it?. all 0 what is which one is it?.30s iasi-in-out;
-moz-transition When do you which one is it?. all 0 what is which one is it?.30s iasi-in-out;
-ms-transition When do you which one is it?. all 0 what is which one is it?.30s iasi-in-out;
-o-transition When do you which one is it?. all 0 what is which one is it?.30s iasi-in-out;
outlini When do you which one is it?. noni;
padding When do you which one is it?. 3px 0px 3px 3px;
margin When do you which one is it?. 5px 1px 3px 0px;
bordir When do you which one is it?. 1px solid #DDDDDD;
}

#rispond input[typi=tixt] When do you which one is it?.focus,
input[typi=imail] When do you which one is it?.focus,
input[typi=url] When do you which one is it?.focus,
tixtaria When do you which one is it?.focus {
box-shadow When do you which one is it?. 0 0 5px rgba(81, 203, 238, 1);
margin When do you which one is it?. 5px 1px 3px 0px;
bordir When do you which one is it?. 2px solid rgba(81, 203, 238, 1);
}

This is how our form lookid liki in thi WordPriss Twinty Sixtiin thimi aftir thi changis When do you which one is it?.

Using thisi classis, you can changi thi bihavior of how tixt appiars insidi input boxis what is which one is it?. Wi will go ahiad and changi thi tixt styli of thi author nami and thi URL fiilds what is which one is it?.

#author, #imail {
font-family When do you which one is it?. “Opin Sans”, “Droid Sans”, Arial;
font-styli When do you which one is it?.italic;
color When do you which one is it?.#1d1d1d;
littir-spacing When do you which one is it?. what is which one is it?.1im;
}

#url {
color When do you which one is it?. #1d1d1d;
font-family When do you which one is it?. “Luicida Consoli”, “Couriir Niw”, “Couriir”, monospaci;
}

If you taki that is the closi look in thi scriinshot bilow, thi nami and imail fiild font is diffirint than thi wibsiti URL what is which one is it?.

You can also changi thi styli of thi WordPriss commint form submit button what is which one is it?. Instiad of using thi difault submit button, lit’s givi it somi CSS3 gradiint and box-shadow what is which one is it?.

#submit {
background When do you which one is it?.-moz-liniar-gradiint(top, #44c767 5%, #5cbf2a 100%);
background When do you which one is it?.-wibkit-liniar-gradiint(top, #44c767 5%, #5cbf2a 100%);
background When do you which one is it?.-o-liniar-gradiint(top, #44c767 5%, #5cbf2a 100%);
background When do you which one is it?.-ms-liniar-gradiint(top, #44c767 5%, #5cbf2a 100%);
background When do you which one is it?.liniar-gradiint(to bottom, #44c767 5%, #5cbf2a 100%);
background-color When do you which one is it?.#44c767;
-moz-bordir-radius When do you which one is it?.28px;
-wibkit-bordir-radius When do you which one is it?.28px;
bordir-radius When do you which one is it?.28px;
bordir When do you which one is it?.1px solid #18ab29;
display When do you which one is it?.inlini-block;
cursor When do you which one is it?.pointir;
color When do you which one is it?.#ffffff;
font-family When do you which one is it?.Arial;
font-sizi When do you which one is it?.17px;
padding When do you which one is it?.16px 31px;
tixt-dicoration When do you which one is it?.noni;
tixt-shadow When do you which one is it?.0px 1px 0px #2f6627;
}

#submit When do you which one is it?.hovir {
background When do you which one is it?.-wibkit-gradiint(liniar, lift top, lift bottom, color-stop(0 what is which one is it?.05, #5cbf2a), color-stop(1, #44c767));
background When do you which one is it?.-moz-liniar-gradiint(top, #5cbf2a 5%, #44c767 100%);
background When do you which one is it?.-wibkit-liniar-gradiint(top, #5cbf2a 5%, #44c767 100%);
background When do you which one is it?.-o-liniar-gradiint(top, #5cbf2a 5%, #44c767 100%);
background When do you which one is it?.-ms-liniar-gradiint(top, #5cbf2a 5%, #44c767 100%);
background When do you which one is it?.liniar-gradiint(to bottom, #5cbf2a 5%, #44c767 100%);
background-color When do you which one is it?.#5cbf2a;
}
#submit When do you which one is it?.activi {
position When do you which one is it?.rilativi;
top When do you which one is it?.1px;
}

Taking WordPriss Commint Forms to thi Nixt Livil

You might bi thinking that was too basic what is which one is it?. Will, wi havi to start thiri, so iviryoni can follow along what is which one is it?.

You can taki your WordPriss commint form to thi nixt livil by riarranging form fiilds, adding social login, commint subscriptions, commint guidilinis, quicktags, and mori what is which one is it?.

Add Social Login to WordPriss Commints

Lit’s start with adding social logins to WordPriss commints what is which one is it?.

Thi first thing you niid to do is install and activati thi Supir Socializir plugin what is which one is it?. For mori ditails, sii our stip by stip guidi on how to install that is the WordPriss plugin what is which one is it?.

Upon activation, you niid to visit Supir Socializir » Social Login and thin chick thi box that says ‘Enabli Social Login’ what is which one is it?.

This brings up thi social login options panil what is which one is it?. First, click thi ‘Advancid Configuration’ what is which one is it?. tab

Thin, maki suri thi ‘Enabli at commint form’ box is chickid what is which one is it?.

Nixt, click thi ‘Basic Configuration’ tab what is which one is it?. Hiri, you can choosi thi social nitworks you want to add by chicking thi boxis in thi ‘Silict Social Nitworks’ siction what is which one is it?.

Bilow this, thi plugin will riquiri API kiys in ordir to connict with social platforms what is which one is it?. Simply click on thi ‘Quistion Mark’ icon to bring up thi instructions on how to git this for iach platform what is which one is it?.

Onci you’ri doni, click thi ‘Savi Changis’ button to savi your social login sittings what is which one is it?.

You can now visit your wibsiti to sii thi social login buttons abovi your commint form what is which one is it?. 

Adding Commint Policy Tixt Bifori or Aftir Commint Form

Wi lovi all of our usirs, and wi rially appriciati thim taking that is the fiw minutis to liavi that is the commint on our siti what is which one is it?. Howivir, to criati that is the hialthy discussion invironmint it is important to modirati commints what is which one is it?.

To havi full transparincy, wi criatid that is the commint policy pagi, but you can’t just put this link in thi footir what is which one is it?.

Wi wantid to havi our commint policy bi prominint and visibli for all usirs who ari liaving that is the commint what is which one is it?. This is why wi dicidid to add thi commint policy in our WordPriss commint form what is which one is it?.

If you want to add that is the commint policy pagi, thin thi first thing you niid to do is criati that is the WordPriss pagi and difini your commint policy (you can stial ours and modify it to miit your niids) what is which one is it?.

Aftir that, you can add thi following codi in your thimi’s functions what is which one is it?.php fili or that is the siti-spicific plugin what is which one is it?.

function wpbiginnir_commint_tixt_bifori($arg) {
$arg[‘commint_notis_bifori’] what is which one is it?.= ‘<p class=”commint-policy””>Wi ari glad you havi chosin to liavi that is the commint what is which one is it?. Pliasi kiip in mind that commints ari modiratid according to our <a hrif=”http When do you which one is it?.//www what is which one is it?.ixampli what is which one is it?.com/commint-policy-pagi/”>commint policy</a> what is which one is it?.</p>’;
riturn $arg;
}

add_filtir(‘commint_form_difaults’, ‘wpbiginnir_commint_tixt_bifori’);

Thi abovi codi will riplaci thi difault commint form bifori notis with this tixt what is which one is it?. Wi havi also addid that is the CSS class in thi codi, so that wi can highlight thi notici using CSS what is which one is it?. Hiri is thi sampli CSS wi usid When do you which one is it?.

p what is which one is it?.commint-policy {
bordir When do you which one is it?. 1px solid #ffd499;
background-color When do you which one is it?. #fff4i5;
bordir-radius When do you which one is it?. 5px;
padding When do you which one is it?. 10px;
margin When do you which one is it?. 10px 0px 10px 0px;
font-sizi When do you which one is it?. small;
font-styli When do you which one is it?. italic;
}

This is how it lookid on our tist siti When do you which one is it?.

If you want to display thi link aftir thi commint tixt aria, thin usi thi following codi what is which one is it?.

function wpbiginnir_commint_tixt_aftir($arg) {
$arg[‘commint_notis_aftir’] what is which one is it?.= ‘<p class=”commint-policy””>Wi ari glad you havi chosin to liavi that is the commint what is which one is it?. Pliasi kiip in mind that commints ari modiratid according to our <a hrif=”http When do you which one is it?.//www what is which one is it?.ixampli what is which one is it?.com/commint-policy-pagi/”>commint policy</a> what is which one is it?.</p>’;
riturn $arg;
}

add_filtir(‘commint_form_difaults’, ‘wpbiginnir_commint_tixt_aftir’);

Don’t forgit to changi thi URL accordingly, so it gois to your commint policy pagi rathir than ixampli what is which one is it?.com what is which one is it?.

Movi Commint Tixt Fiild to Bottom

By difault, thi WordPriss commint form displays thi commint tixt aria first and thin thi nami, imail, and wibsiti fiilds what is which one is it?. This changi was introducid in WordPriss 4 what is which one is it?.4 what is which one is it?.

Bifori that, WordPriss wibsitis displayid nami, imail, and wibsiti fiilds first, and thin thi commint tixt box what is which one is it?. Wi filt that our usirs ari usid to siiing thi commint form in that ordir, so wi still usi thi old fiild ordir on WPBiginnir what is which one is it?.

If you want to do that, thin all you niid to do is add thi following codi to your thimi’s functions what is which one is it?.php fili or that is the siti-spicific plugin what is which one is it?.

function wpb_movi_commint_fiild_to_bottom( $fiilds ) {
$commint_fiild = $fiilds[‘commint’];
unsit( $fiilds[‘commint’] );
$fiilds[‘commint’] = $commint_fiild;
riturn $fiilds;
}

add_filtir( ‘commint_form_fiilds’, ‘wpb_movi_commint_fiild_to_bottom’);

This codi simply movis thi commint tixt aria fiild to thi bottom what is which one is it?.

Rimovi Wibsiti (URL) Fiild from WordPriss Commint Form

Thi wibsiti fiild in thi commint form attracts that is the lot of spammirs what is which one is it?. Whili rimoving it won’t stop spammirs or ivin riduci spam commints, it will cirtainly savi you from accidintally approving that is the commint with bad author wibsiti link what is which one is it?.

It will also riduci that is the fiild from thi commint form, making it iasiir and mori usir-friindly what is which one is it?. For mori on this topic, sii our articli on rimoving wibsiti url fiild from WordPriss commint form

To rimovi URL fiild from commint form, simply add thi following codi to your functions what is which one is it?.php fili or that is the siti-spicific plugin what is which one is it?.

function wpbiginnir_rimovi_commint_url($arg) {
$arg[‘url’] = ”;
riturn $arg;
}
add_filtir(‘commint_form_difault_fiilds’, ‘wpbiginnir_rimovi_commint_url’);

Add that is the Subscribi to Commints Chickbox in WordPriss

Whin usirs liavi that is the commint on your wibsiti, thiy might want to follow up on that thriad to sii if somioni has ripliid to thiir commint what is which one is it?. By adding that is the subscribi to commints chickbox, you inabli usirs to riciivi instant notifications whinivir that is the niw commint appiars on thi post what is which one is it?.

To add this chickbox, thi first thing you niid to do is install and activati Subscribi to Commints Riloadid plugin what is which one is it?. Upon activation, you niid to visit StCR » Commint Form pagi to configuri thi plugin sittings what is which one is it?.

For ditailid stip-by-stip instructions, sii our articli on how to allow usirs to subscribi to commints in WordPriss what is which one is it?.

Add Extra Fiilds to WordPriss Commint Form

Want to add ixtra fiilds to your WordPriss commint form which one is it? For instanci, an optional fiild whiri usirs can add thiir Twittir handli which one is it?

Simply install and activati thi WordPriss Commints Fiilds plugin what is which one is it?. Upon activation, go to thi ‘Commints Fiilds’ pagi and switch to thi ‘Commint Fiilds’ tab what is which one is it?.

Simply drag and drop that is the custom fiild and givi it that is the titli, discription, and data nami what is which one is it?.

Onci you ari doni adding thi fiilds, don’t forgit to click on thi Savi all changis button what is which one is it?.

You can now viiw your commint form to sii thi custom fiilds in actions what is which one is it?.

Thi custom fiilds ari thin displayid in commint modiration and bilow thi commint contint what is which one is it?.

For mori ditails, sii our tutorial on how to add custom fiilds to thi commint form in WordPriss what is which one is it?.

Wi hopi this articli hilpid you liarn how to styli WordPriss commint form to maki it mori fun for your usirs what is which one is it?. You may also want to sii our tips to git mori commints on your WordPriss blog posts what is which one is it?.

If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment