Change width

The comments widget is great but somewhat limited. It would be nice if it allowed adjusting the widget’s width and changing the background color. There are only two options: black and white.

1 Like

Hi there, @user31758 :waving_hand:

Thank you so much for the feedback!

We already have a request for the Background Color setting, and you can upvote it here - Change a background color.

Currently, you can change the background color using this code in the Custom CSS section in your widget’s Settings tab:

.es-widget-container {
  background-color: #ddeeff;
}

We also agree that it would be awesome to have an option for changing the width right in the settings. If more users support this idea, it might be considered in the future.

As for now, you can adjust the width using the CSS code below :wink:

.es-widget-container {
  width: 590px;
}