Sunjeet kour
asked 9 years ago

Hello Joe , I am using a free wordress template , named Hueman: https://wordpress.org/themes/hueman/ and want to customize the Jetpack email subscription widget { Subscribe to Blog via Email } . Can you please temme the css codes to modify the Placeholder and Subscribe button ? Thanks in Advance.

1 Answers
DominicStaff
answered 9 years ago

Hi,
I would suggest that you use Custom CSS to customize the look of that button. Try adding your own styles to your theme stylesheet, or to your custom CSS editor under Appearance > Edit CSS in your dashboard. You can target the submi button with the following CSS:

.jetpack_subscription_widget input[type="submit"] {
     /* Your custom CSS rules here */
}
/*I think it would look better if you were to use a simple background, like so*/
#subscribe-blog-blog_subscription-2 input[type="submit"] {
       background: #666;
       border: none;
       color: #fff;
       height: 32px;
       padding: 0 15px;
}

Or try the following CSS:

.jetpack_subscription_widget input[type=text], .jetpack_subscription_widget input[type=email] {
color: #333;
padding: 7px !important;
width: 95% !important;
border: 0;
}
.jetpack_subscription_widget input[type="submit"] {
background: BUTTON BACKGROUND;
color: white;
margin: 0;
width: 100% !important;
line-height: normal !important;
padding: 6px !important;
height: auto;
border: none;
box-shadow: none;
text-shadow: none;
}
.jetpack_subscription_widget input[type="submit"]:hover {
background: BUTTON HOVER BACKGROUND;
}

Note: The Hueman theme not a product from our team.
Hope this helps !

Olakunle Adeniyi
replied 4 years ago

Hello, please i need help editing the jetpack subscription to centre. I want the heading to centre. thanks in advance

Dominic Staff
replied 4 years ago

Please create a private question then let me know detail about this question, you can provide some the screenshot for further checking.

Powered by DW Question & Answer Pro