Hey @core365,
You have modified the Topbar’s design which complicates the header layout. Specifically, you have this code.
.x-topbar {
position: fixed;
width: 95%;
text-align: center;
}
I’ll show you how to align but only at a certain point. You need to change that with this code.
.x-topbar {
position: fixed;
width: 86%;
text-align: center;
transform: translateX(-50%);
left: 50%;
}
This would be the result.
It will not be perfectly aligned in large screens.
You’ll have a problem with standard screens.
Works OK in tablet.
Broken again in mobile.
As you can see, that will need a lot of fixing with custom code and it would require further custom development to fix that. You’ll need to hire a third-party developer if you wish this to be fixed with further custom code.
Or better yet, please upgrade to Pro theme so no custom code would be needed and we can help you achieve that header design.
Hope that helps and thank you for understanding.