After installing the Thank you plugin, I noticed that the button on my test site appears to be strange.
Upon further investigation, I discovered that it is inheriting
#commentform textarea { width: 45%; }
from my theme. While removing the width in the CSS resolves the issue with the button's appearance, I am hesitant to do so as it affects other elements such as #commentform textarea. Is there a way I can selectively target the button in the CSS to address this problem? Perhaps something like width:not-inherit; width:reset;
where the button's width would only be defined if there is no #commentform textarea
present?