I'm editing a WordPress theme and would like to reposition the menu just below the header image, but how do I do this in CSS?
The site is not yet hosted on the web. I'm modifying the theme before installing everything. The code for the menubar is as follows:
/**************************** MENU***************************/
/*menu topo*/
.menu-topo {width: 100%; height: 50px; background: #B0D6C9; -webkit-box-shadow: inset 0 -2px 5px rgba(0,0,0,.05); box-shadow: inset 0 -2px 5px rgba(0,0,0,.05);}
/*navegacao de topo*/
nav.navegacao ul {float: left; margin: 0; padding: 0; list-style: none;}
/*lista de menu*/
nav.navegacao ul li {position: relative; display: inline-block; margin: 0; padding:0; color: #fff;}
nav.navegacao ul li a {color: #fff; line-height: 50px; text-decoration: none; padding: 0 14px; text-transform: uppercase; font-weight: bold;}
/*quando o item menu está ativo ou no hover*/
nav.navegacao ul li:hover,
nav.navegacao ul li.current-menu-item,
nav.navegacao ul li.current_page_parent {background: rgba(255, 255, 255, 0.57);}
nav.navegacao ul li:hover a,
nav.navegacao ul li.current-menu-item a,
nav.navegacao ul li.current_page_parent a {color: #85C3AE; }
nav.navegacao ul li:hover:after,
nav.navegacao ul li.current-menu-item:after,
nav.navegacao ul li.current_page_parent:after {color: #fff; position: absolute; bottom: 0; left: 50%; width: 0; height: 0; margin-left: -5px; vertical-align: middle; content: " "; border-right: 5px solid transparent; border-bottom: 5px solid; border-left: 5px solid transparent;}
/*menu responsivo*/
.menu-responsivo {width: 100%; margin: 8px auto 0;
display: none; /*determina que será invisivel de inicio*/
}
The theme is called temabase_mLuv1.1 This is not a free theme available in WordPress but has been made available to download this site .