Viewing file: header.php (812 B) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<style> /* Header background with yellow gradient */ #header { background: linear-gradient(90deg, #FFD700, #FFA500); /* Golden Yellow → Orange */ padding: 10px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
/* Ensure text/logo is visible on gradient */ #header .logo-text h1, #header .logo-text small { color: #fff !important; /* White text */ } </style>
<header id="header" class="header d-flex align-items-center sticky-top"> <div class="container-fluid container-xl position-relative d-flex align-items-center">
<a href="index.php" class="logo d-flex align-items-center me-auto"> <!-- Logo --> <img src="admin/images/logo.png" alt="ITCE Logo" class="me-2" style="height:50px;">
</a>
<!-- Menubar --> <?php include 'menubar.php'; ?>
</div> </header>
|