3
I am editing a Wordpress theme and would like to reposition the menu just below the image of header, however, how to do this in CSS?
The site is not yet hosted on the web. I am modifying the theme before installing everything. The code for the menu bar are these:
/**************************** 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 It is not a free theme available in Wordpress, but has been made available to download on this site.
You could add the HTML code too?
– Chun
I can’t send you this way because it’s big, but I put it here: http://collabedit.com/77639
– Thaís Pietrobon
It’s... maybe it’s better to actually send the website link if you can, because then I can inspect the elements and see better to tell you exactly what you need to modify.
– Chun