Rename header identifier

This commit is contained in:
Blade of Darkness 2022-05-01 09:58:30 +02:00
parent bdf24f2ba0
commit f87d59110f
2 changed files with 9 additions and 9 deletions

View File

@ -16,7 +16,7 @@ require 'php/procedures.php'; # interact with variables in the execution environ
</head>
<body>
<div class="mw-body-wrapper">
<div class="mw-header"><?php require 'divs-mw/header.php' ?></div>
<div id="header"><?php require 'divs-mw/header.php' ?></div>
<div id="mw-content-wrapper"><?php echo $mightycms['m_content'] ?></div>
<div id="mw-sidebar"><?php require 'divs-mw/sidebar.php' ?></div>
</div>

View File

@ -8,20 +8,20 @@ body
}
/* Header */
.mw-header
#header
{
height:100px;
border-bottom:#fff 3px solid;
margin:0;
background:url(MightyWCMS.jpg) no-repeat
}
.mw-header #branding{float:left; height:100px}
.mw-header ul
#header #branding{float:left; height:100px}
#header ul
{
float:right;
margin: 60px 0 0
}
.mw-header li{display:inline; padding:12px}
#header li{display:inline; padding:12px}
/* Global */
.mw-body-wrapper, .mw-footer{width:80%; margin:auto; overflow:hidden}
@ -57,11 +57,11 @@ a:hover{color:#fff}
/* Media Queries */
@media(max-width: 768px)
{
.mw-header #branding, .mw-header ul, #mw-content-wrapper, #mw-sidebar
#header #branding, #header ul, #mw-content-wrapper, #mw-sidebar
{float:none; text-align:center; width:100%}
.mw-header ul{margin-top: 0}
.mw-header{height:100%}
#header ul{margin-top: 0}
#header{height:100%}
.mw-body-wrapper, .mw-footer{width:95%}
}
/* .mw-header, #mw-content-wrapper, #mw-sidebar, .mw-footer{background-color:#00141A} */
/* #header, #mw-content-wrapper, #mw-sidebar, .mw-footer{background-color:#00141A} */