/* Main Menu */
nav.mainMenu {
+ /* This is the general toggle switch for main menu orientation (options: left|center|right) */
+ text-align: left;
margin: 0 30px;
- background-color: rgba(0, 0, 0, .4);
- display: table;
+ display: block;
position: relative;
- bottom: -5px;
-
- border-top-left-radius: 5px;
- border-top-right-radius: 5px;
+ bottom: -7px; /* closes the gap between tabs and menu bar */
}
nav.mainMenu:after {
}
nav.mainMenu ul {
- display: table-row;
+ border-top-left-radius: 5px;
+ border-top-right-radius: 5px;
+ background-color: rgba(0, 0, 0, .4);
+ display: inline-block;
+
}
nav.mainMenu ul li {
color: #69c;
text-shadow: 0 -1px 0 #000;
cursor: pointer;
- display: table-cell;
+ display: inline-block;
margin: 5px -5px 0;
- padding: 13px 20px;
+ padding: 13px 20px 7px;
position: relative;
- top: -3px;
+ top: -7px;
z-index: 1;
border-top-left-radius: 5px;
background-image: linear-gradient(#fff, #e7f2fd);
}
+nav.mainMenu ul li.activeMenuItem:first-child {
+ margin: 5px -5px -5px 0;
+}
+
+nav.mainMenu ul li.activeMenuItem:last-child {
+ margin: 5px 0 -5px -5px;
+}
+
/* Header Navigation */
nav.headerNavigation {
.tabMenu {
text-shadow: 0 1px 0 #fff;
background-color: none;
- /* This is the general switch for tab menu orientation */
+ /* This is the general toggle switch for tab menu orientation (options: left|center|right) */
text-align: center;
padding: 0 5px;
display: block;
}
.menu ul {
- /* This is the general switch for menu orientation */
+ /* This is the general toggle switch for menu orientation (options: left|center|right) */
text-align: center;
}