I want to change the background of a text box within a color section to a transparent grey. I noticed even with the function updated for developer mode, I can’t assign a CSSID to a text box (only the section).
I’ve tried in the quick-css section of Enfold settings after adding the custom CSSID of .form-textblock to the color-section
this first css works but colors the entire color section (not what I want)
.form-textblock {
background: rgba(153,153,153,.5);
}
This does nothing:
.form-textblock P {
background: rgba(153,153,153,.5);
}
Hey austinmscott,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#form-textblock .av_textblock_section {
background: #555;
padding: 5px;
}
Let us know if this helps :)
Best regards,
Nikko