Struggling to customize the appearance of the last input type within the Jetpack plugin in WordPress.
I have experimented with the following CSS:
#subscribe-submit > input[type="submit"]::last-of-type {
#subscribe-submit > input[type="submit"]:nth-child(6)
Are there any other solutions that could potentially work?
Below is the provided code snippet:
<p id="subscribe-submit">
<input type="hidden" name="action" value="subscribe">
<input type="hidden" name="source" value="/">
<input type="hidden" name="sub-type" value="widget">
<input type="hidden" name="redirect_fragment" value="blog_subscription-2">
<input type="hidden" id="_wpnonce" name="_wpnonce" value="8e7bd4e874">
<input type="submit" value="SUBMIT" name="jetpack_subscriptions_widget">
</p>