Struggling to insert a background image inside a textarea on a contact form. The issue arises when the browser window is resized, cutting off the image and failing to fit perfectly within the textarea. I want the textarea to fully display the image and adjust its size when the browser is resized. Unsure if there's a solution for this problem.
Below is my code snippet
#contactfooter {
background-color: rgba(76, 73, 73, 0.44);
color: rgb(183, 181, 181);
border: 1px solid #676363;
padding: 5px;
width: 100%;
}
textarea#contactfooter {
background-color: rgba(76, 73, 73, 0.44);
background: url(https://psycheseminars.com/wp-content/uploads/2016/08/textback.jpg);
}
Check out the page The contact form can be found in the footer section.