Tue, 2021-03-09 16:45
Hi
using dynamic fields with jetengine to show post type titels I would like to add text shadow using css. The titel is in h5 and I tried to help myself and used :
h5."jet-listing-dynamic-field__content" {
text-shadow: 10px 10px 10px black;
}
Grateful for some ideas.
Thu, 2021-03-11 12:07
#1
What is the issue you are
What is the issue you are having, and can you post the HTML output that JetEngine gives you?
Based on your CSS it looks like you need to remove the quotation marks
change:
h5."jet-listing-dynamic-field__content" { text-shadow: 10px 10px 10px black; }
to:
h5.jet-listing-dynamic-field__content { text-shadow: 10px 10px 10px black; }
Mon, 2021-03-15 23:28
#2
sometimes its just stupid.
sometimes its just stupid. Your were so right @thepineapplehead, thx!!!
I fixed it with:
h5.jet-listing-dynamic-link__label { text-shadow: 10px 10px 10px black; }
and
h5.jet-listing-dynamic-field__content { text-shadow: 10px 10px 10px black; }