cancel
Showing results for 
Search instead for 
Did you mean: 

Contact Us Selectors - Noob CSS Question

SOLVED

Contact Us Selectors - Noob CSS Question

Hello, I'm bad at css selectors.

 

Can anyone tell me what the correct selector/code would be to change the width of the 'comment' box on THIS page?

 

 

Thank you for your time,

Jacob

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Contact Us Selectors - Noob CSS Question

If you want to do it for all the fields on the page to make it look like this:

 

Screenshot 2016-08-11 17.04.42.png

 

Then you would need to add "width: 100%;" to this part of your CSS

 

input[type="text"],input[type="password"],input[type="email"], textarea {
Keep the other CSS styles in here but add
width: 100%;
}
 
If you really just want the comment to be 100%, then it would be:
 
#comment {
width: 100%
}
-Kris
4x Certified, Blogger @ xgento.com

View solution in original post

1 REPLY 1

Re: Contact Us Selectors - Noob CSS Question

If you want to do it for all the fields on the page to make it look like this:

 

Screenshot 2016-08-11 17.04.42.png

 

Then you would need to add "width: 100%;" to this part of your CSS

 

input[type="text"],input[type="password"],input[type="email"], textarea {
Keep the other CSS styles in here but add
width: 100%;
}
 
If you really just want the comment to be 100%, then it would be:
 
#comment {
width: 100%
}
-Kris
4x Certified, Blogger @ xgento.com