Thank you very much for fixing this, I greatly appreciate it.
I have a question, so I don't mess up the configuration again: I want to display a couple of buttons in the drop-down megamenu. (In my website
http://www.barrylongtv.com, click on the first menu item "bltv". I want to show the submenu items "free trial" and "login" as buttons).
This is the CSS for the buttons:
.btn-dropdown-megamenu {
-moz-box-shadow:inset 0px 1px 0px 0px #97c4fe;
-webkit-box-shadow:inset 0px 1px 0px 0px #97c4fe;
box-shadow:inset 0px 1px 0px 0px #97c4fe;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #3d94f6), color-stop(1, #1e62d0) );
background:-moz-linear-gradient( center top, #3d94f6 5%, #1e62d0 100% );
filter
rogid
XImageTransform.Microsoft.gradient(startColorstr='#3d94f6', endColorstr='#1e62d0');
background-color:#3d94f6;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #337fed;
display:inline-block;
color:#ffffff;
font-family:inherited;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:1px 1px 0px #1570cd;
}.btn-dropdown-megamenu:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1e62d0), color-stop(1, #3d94f6) );
background:-moz-linear-gradient( center top, #1e62d0 5%, #3d94f6 100% );
filter
rogid
XImageTransform.Microsoft.gradient(startColorstr='#1e62d0', endColorstr='#3d94f6');
background-color:#1e62d0;
}.btn-dropdown-megamenu:active {
position:relative;
top:1px;
}
Please can you confirm that...
1) I need to add this to the custom.css file, instead of megamenu.css
2) In the megamenu toolbox, add the class "btn-dropdown-megamenu" for each of these two submenu items?
Thanks,
Hector