Center Header Elements

It’d be great to have a setting to center Title, Rating and Number of Reviews in the Header.

1 Like

Happy to see you on our forum @Benno_Marbach! Welcome :wave:

I see your point and agree that it would be great to have such a setting in the configurator. We’ll try to think it over in our future updates. I’ll keep you in the loop :slightly_smiling_face:

As a workaround, you can add this code to the Custom CSS field on the Style tab of your widget’s settings:

.es-header-container:before {
  content: '';
  width: 148px;
  height: 0;
}

.es-header-info {
  margin-right: 0;
}

.es-header-title-container {
  justify-content: center;
}

@media (max-width: 650px) {
  .es-header-container:before {
    display: none;
  }
  
  .es-header-container {
    display: flex;
    flex-direction: column;
  }
}