HELP!!! Problem with Mega Menu
I've copied some source code from w3schools.com, which should make a 3-column mega menu. However, when I open it on a certain page, the 3rd column is on a second row, below the first 2. Here's the code I'm using for the header, including CSS: <!DOCTYPE html> <html lang='en'> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Community Projects | FastLabs </title> <meta name="description" content="Welcome to our new website! Thanks for coming."> <link rel="stylesheet" href="main.css"> <style> .fadebox{ position: relative; width: 50%; height:100% } .image { display: block; width: 100%; height: 100%; } .overlay { position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 100%; width: 100%; opacity: 0; transition: .5s ease; background-color: #008CBA; } .fadebox:hover .overlay { opacity: 1; } .text { color: white; font-family: "Segoe UI", monospaced; font-size: 20px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); text-align: center; } /* Style the tab buttons */ .tablink { background-color: #555; color: white; float: left; border: none; outline: none; cursor: pointer; padding: 14px 16px; font-size: 17px; width: 25%; } /* Change background color of buttons on hover */ .tablink:hover { background-color: #777; } /* Set default styles for tab content */ .tabcontent { color: white; display: none; padding: 50px; text-align: center; } /* Style each tab content individually */ #Pipit {background-color:red;} #In-SuiteX {background-color:orange;} #sanguinearts {background-color:green;} #mlen {background-color:darkblue;} .btn { border: none; /* Remove borders */ color: white; /* Add a text color */ padding: 14px 28px; /* Add some padding */ cursor: pointer; /* Add a pointer cursor on mouse-over */ } .success {back