Hey @toni12,
You have removed the Site Title from the header, that is why you are facing such issues.
Adding your site title will give you a much better look at the header.
However, if you aren’t satisfied, then you can communicate with the theme developers via their official support channel.
The theme you are using is Shapely.
Contact them here: https://ww.wp.xz.cn/support/theme/shapely/
Forum volunteers are not given access to custom or commercial products. We encourage you to use the official support venues, as it allows the developers to be aware of issues with their code and gives back to the community in a more robust way. See https://ww.wp.xz.cn/support/guidelines/#do-not-post-about-commercial-products
try:
@media all and (min-width: 992px) {
#site-navigation .container > .flex-row {
justify-content: center;
}
}
If not you may need:
@media all and (min-width: 992px) {
#site-navigation .container > .flex-row {
justify-content: center !important;
}
}
Thread Starter
toni12
(@toni12)
@prabhatrai Thank you, I have created a new post there.
Thread Starter
toni12
(@toni12)
@tugbucket I have tried this snippet but it seems invalid. I get error when I input it into snippet plugin, thanks for the help though.
@toni12 This is CSS. You put it in your style sheet. It’s not PHP.
Thread Starter
toni12
(@toni12)
@tugbucket Thank you very much, it worked!