Placeholder issue & styling the survey

Hello Campers,

I’m about to go bed but been trying to find out why my placeholder attribute text isn’t showing up inside my comment box. At the start of developing this page i set the margin and padding to 0 on the body but whenever i want to create a background for my survey in the center of my page it will just just automatically have 0 for padding and margin… is there any possible way to overcome this??

Help would be much appreciated

Kind Regards

Wayne

You can’t have while space or line breaks between textarea tags. You have this:

<textarea name="message" rows="10" cols="30" placeholder="type your message here"> 
            
          </textarea><br><br>

You need to tighten things up and put the code all on one line:

<textarea name="message" rows="10" cols="30" placeholder="type your message here"> </textarea><br><br>
1 Like

Thank you so much! much appreciated :slight_smile: