/* Forces the bar to stay fixed at the very top of the screen */ #ad { position: fixed; top: 0; left: 0; width: 100%; background-color: lightblue; /* Change background color here */ color: #333; /* Change text color here */ text-align: center; padding: 10px 0; font-family: Arial, sans-serif; font-weight: bold; z-index: 99999; /* Ensures it stays above all other elements */ box-shadow: 0 2px 5px rgba(0,0,0,0.2); } /* Prevents your main content from hiding behind the sticky bar */ body { margin: 0; padding-top: 40px; /* Adjust based on your bar's height */ }
