hello there,
i would like te alter the list field into something just a little more sophisticated, but it is influenced by enfold css. Personally i am not savvy enough to change this.
For me it seems impossible to target the headings, and to make it into something else (BOLD PARAGRAPH STYLE). Also the different lines of the list fields alternate between grey and white. How to change that into pure all white?
Thanx for your support,
Zineatovo
Hi zineatoo!
We can change the font-weight/font-size for the headings using css, however please indicate what headings you are referring to as all headings currently have some degree of bolding.
Please insert the following css into your custom css section in order to keep a consistent white background for each row:
.main_color tr:nth-child(even) {
background-color: #ffffff;
}
Regards,
Dake
Hi Dake,
thanks for your reply.
I was referring to the first list.
the heading says: NAAM HEX RGB
since it is a list it gets a special css treatment i suspect, but i do not know where to go to alter this into something that looks like the rest.
Regards,
Z
Hey!
Please add following code to Quick CSS and adjust as needed
.gfrorm_body thead th {
font-size: 13px!important;
font-weight: normal!important;
}
Best regards,
Yigit
so nice of you to get into this.
if its not too difficult for you to answer, I’ve got one more question regarding this form:
how to color the input text black, instead of grey…
sorry for asking this, but i cannot find it anywhere how to change this. Perhaps it is too easy?
thanks, Z
Hey!
You can use the following css to modify the color of your input text:
#top .main_color input[type='text'] {
color: #000000 !important;
}
Regards,
Dake