You are viewing limited content. For full access, please sign in.

Question

Question

CSS for Background Comment box

asked one day ago

Hi everyone, 

So in my forms, I have everything styled all nice until it gets down to the comment box.  I want to keep the comment box, but the stark white background compared to the rest of the form really bugs me.  I've tried to set the css of .approval-wrap background-color: transparent but it doesn't seem to have any impact.  Any thoughts?

comment box.png
comment box.png (108.59 KB)
0 0

Replies

replied 11 hours ago

Try using this: 

.approval-wrap,
.approval-outer-wrap {
    background-color: transparent;
    border: 0px solid #ccc; /* Optional: to keep the border visible */
    padding: 10px; /* Optional: to maintain padding */
    color: #000; /* Optional: to ensure text color is readable */
}

 

1 0
You are not allowed to follow up in this post.

Sign in to reply to this post.