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

Question

Question

Change Bottom border in collections

asked on December 4, 2015

I can't seem to find how to customize the bottom border for collections when they are repeatable. 

 

 

Has anyone else been able to do this?

1 0

Answer

SELECTED ANSWER
replied on December 4, 2015

In particular for that element, the default CSS is as follows:

hr.end_set {
    border: 0;
    border-top: 1px dotted #ccc;
    color: white;
    background-color: transparent;
    height: 1px;
    margin: 0 auto;
}

So for example if you wanted to make the borders wider or change the line color or style, you should set in particular the border-top property. If you wanted to change the width you can set using width property. To remove it altogether, the old reliable {display: none;} works as usual.

1 0

Replies

replied on December 4, 2015

This should get you what you want:

hr.end_set {[css rules]; }

 

0 0
SELECTED ANSWER
replied on December 4, 2015

In particular for that element, the default CSS is as follows:

hr.end_set {
    border: 0;
    border-top: 1px dotted #ccc;
    color: white;
    background-color: transparent;
    height: 1px;
    margin: 0 auto;
}

So for example if you wanted to make the borders wider or change the line color or style, you should set in particular the border-top property. If you wanted to change the width you can set using width property. To remove it altogether, the old reliable {display: none;} works as usual.

1 0
replied on April 24, 2017

hr.end_set removes the bottom border line. What is the name of the top border line element? I would like to remove the top line too.

You are not allowed to follow up in this post.

Sign in to reply to this post.