• [deleted]

  • Edited

Here's the CSS class for that

.DiscussionList-loadMore {
    text-align: center;
    margin-top: 10px;
}

EDIT - the actual "button" class is here

.Button {
}

So, if you wanted to target just this button, you'd use something like the below

.DiscussionList-loadMore button {
    background: red;
}

What do you want to change exactly, @wwwn ?

    [deleted] Thanks for the help. I want the width to be as in the image in the first message. So you want to increase the width

    • [deleted]

    So you want it to expand to the div width ? Presently, it's s subsection of that ?

    • [deleted]

    If yes, then this will do it

    .DiscussionList-loadMore button {
        width: 100%;
    }

      [deleted] Yes it works.

      .DiscussionList-loadMore button {
          width: 100%;
      }