Hi @elizabethanneflynn,
There something wrong with your current setup, I’ve been changing the flex setting and it’s not taking effect. The cause of that issue is this
.e130-1.x-bar-content {
flex: 0 1 100%;
}
Have you added a custom CSS like that somewhere?
It should be this since that’s what I’ve been saving.
.e130-1.x-bar-content {
flex: 0 1 auto;
}
Icons in the builder aren’t displaying too, seems to be blocked by your host security. Example http://staging.************.com/wp-content/themes/pro/cornerstone/assets/dist-app/svg/interface.svg?v=3.4.6
For the meantime and quick workaround, you can add this to your header CSS
.e130-1.x-bar-content {
flex: 0 1 auto !important;
}
Thanks!