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

Question

Question

Changing a Collection's Style

asked on May 4, 2022

Ok, this should hypothetically be relatively simple... 

I have a collection in my form and I'm attempting to re-style the form to remove the gray dotted line between sets in the collection, but I've been looking through it in developer tools and I can't find which element has the styling that adds that grey dotted line. 

Anyone happen to know before I just try removing borders from every element until I find it ?

 

0 0

Answer

SELECTED ANSWER
replied on May 4, 2022

There's an hr element in each set that creates the dotted line.

It has a class of end_set, so you could use the following CSS

hr.end_set {
    display: none;
}

 

0 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.