The CSS to that menu is included on the page! A lot of the CSS lines that control styling are commented out as well.
To add a height of 75pixels, just add the highlighted below to the CSS:
Code:
#modernbricksmenu2 a{
float: left;
display: block;
font: bold 11px Arial;
color: white;
text-decoration: none;
margin: 0 1px 0 0; /*Margin between each menu item*/
padding: 5px 10px;
background-color: black; /*Brown color theme*/
border-top: 1px solid white;
height:75px;
}
To add a gray border to the left, add this:
Code:
#modernbricksmenu2 a{
float: left;
display: block;
font: bold 11px Arial;
color: white;
text-decoration: none;
margin: 0 1px 0 0; /*Margin between each menu item*/
padding: 5px 10px;
background-color: black; /*Brown color theme*/
border-top: 1px solid white;
border-left: 1px solid gray;
}
Bookmarks