Hi David @haveanepiphany
You are correct and I actually see what you’re saying now that users have already provided that information. I guess I should not change that then and really my goal is actually uniformity.
When a user has currently signed “out” the fields author, email, and URL are to the right of the comment box, which I’d like to keep, but when a user is signed “in” the comment box remains the same size unless I set the width to 100%. If I set the 100% then when a user has signed “out” the field boxes are now below the comment box. Could you help me figure out how to change the size of the comment box based on these contents? Below is my code (sorry if I didn’t place it correctly):
#commentform {
padding-left: 30px;
padding-right: 30px;
padding-top: 20px;
padding-bottom: 30px;
width: 100%;
background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23c7c7c7' fill-opacity='0.14'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.form-submit {
margin-top: 220px;
}
#submit {
float: right;
display: inline;
}
#nsu-checkbox {
margin-top: 75px;
}
#respond {
width: 600px;
}
#respond form input[type="text"], #respond form textarea {
-moz-box-sizing: border-box;
font-size: 0.857143rem;
line-height: 1.71429;
padding: 0.714286rem;
width: 100%;
height: 100px;
}
#respond #comment {
float: right;
width: 300px !important;
height: 155px !important;
}
#respond #author {
width: 175px !important;
height: 20px !important;
}
#respond #email {
width: 175px !important;
height: 20px !important;
}
#respond #url {
width: 175px !important;
height: 20px !important;
}
Thanks so much for your help! This has been a huge frustration for me.
Aimee