Ichhaueeuch
Not a problem sir. ?
I also noticed the issues with regards to the admin panel being improperly placed as well as the scrubber.
I had thought all you wanted was a orange border and the scrubber colors changed ?
I will try playing with it some more.
Be well.
Ichhaueeuch
Update:
I think the issues you notice are related to duplicate css styles.
You are pulling your WP main-css and the .container
rules are conflicting with Flarums own.
I will try to help you out some, but you really aught to go through the code needed for your Headers customization's and remove all other css. You only want what the header needs and you might also need to make them different.
You will need to make sure the css for your headers is not also included in Flarums own css.
Example:
Your WP site uses main.min.css
to store the css for that WP theme/site. In that css are common style names such as .content, body, .header, #header, .nav
etc.
Flarum also has its own main css file which is typically something like forum-37806bf5.css
and inside that are also very commonly named styles such as .content, body, .header, #header, .nav
etc.
So by you calling out to use the full css of your WP site, its conflicting with the same style rules that are duplicates.
To troubleshoot this, you need to trackdown exactly which styles are the same and rename them to something else like:
.content-inner {
width: 100%;
}
modify to be:
.content-inner-wp {
width: 1110px;
}
You then track down the custom header html from your WP site, and change it to point to your new style name.