All pages (front, threads, forums, etc) are dynamically generated based on templates and macros. All pages use the same "header" template to generate that top header of a page.
Right, found some of the other styles that are in that javascript, like
Reading through the javascript a bit, there's this bit of code:
In short, the javascript mucks around with the style client-side. The search continues.
Right, found some of the other styles that are in that javascript, like
div#freebsd_headerlogoleft
and div#freebsd_menu
. In the same file I did find #freebsd_headercontainer
but that has no mention of background-image:
. Haven't found div#freebsd_headercontainer
yet.Reading through the javascript a bit, there's this bit of code:
Code:
$container=e("div#freebsd_headercontainer")
{...}
$container.append('<button id="btn-hamburger">
In short, the javascript mucks around with the style client-side. The search continues.