privaldes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal Error after update 3.5 versionI’m also going through it … I use the theme “Actiniumize” from Padd Solu tions. Anyone got any solutions?
Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main MenuOk, no problem. You can only delete the link to the website to which I referred?
The link is in my first post in this topic.
Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main MenuCould you please delete this topic?
Thanks again for your attention!
Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main MenuOk guys! Resolved! Thank you for your help!
Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main MenuUnfortunately, even with 60% the menu is centered …
Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main MenuBut with a wide 60% chance of happening the error you mentioned before is greater, is not it?
Be careful when adding a width to your navigation, as when pages are added or removed, the width changes and may cause an off-set of centralisation or the navigation to use two lines.
Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main MenuCSS:
nav { float: left; height: 35px; width: 100%; font-size: 14px; font-weight: bold; background: #a90329; } .navwrap { text-align: center; width: 90%; margin: 0 auto; padding-top: 4px; } nav ul.dropdown { list-style: none; float: left; padding: 5px 10px 6px 0; } nav ul.dropdown li { display: inline; position: relative; z-index: 500; text-align: left; font-size: 14px; cursor: default; } nav ul.dropdown a { padding:12px; color: #eee; text-decoration: none; text-shadow: 0 1px 0 #000; cursor: default; } nav ul.dropdown li:hover a { background: #444; padding: 8px 10px 10px 10px; height: 18px; } nav ul.dropdown li ul a { display: block; cursor: pointer; } nav ul.dropdown ul { list-style: none; width: 200px; position: absolute; z-index:500; } nav ul.dropdown ul, nav ul.dropdown li:hover ul ul, nav ul.dropdown ul li:hover ul ul { display: none; } nav ul.dropdown li:hover ul, nav ul.dropdown ul li:hover ul, nav ul.dropdown ul li ul li:hover ul { display: block; left: 0; top: 26px; } nav ul.dropdown li * a:hover { background: #666; } nav ul.dropdown-home { list-style: none; float: left; width: 30px; padding: 5px 50px 6px 0; } nav ul.dropdown-home li.home { } nav ul.dropdown-home li.home a { background: url(images/nav-home.png) no-repeat scroll center top transparent; color: #882424; height: 43px; width: 86px; padding: 5px 18px 20px 20px; }Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main Menu<nav role="navigation"> <div class="navwrap"> <ul class="dropdown-home"> <li class="home"><a href="<?php echo get_option('home'); ?>">HOME</a></li> </ul> <?php wp_nav_menu(array ( 'menu' => 'Menu Principal', 'theme_location' => 'menu-principal', 'container' => '', 'items_wrap' => '<ul id="%1$s" class="dropdown">%3$s</ul>' ) ); ?> </div> </nav>Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main Menuok, I’m sorry … I will correct it ….
Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main MenuIf it helps, this is the code that calls the menu:
<nav role=”navigation”>
<div class=”navwrap”>
<ul class=”dropdown-home”>
<li class=”home”>“>HOME<?php wp_nav_menu(array (
‘menu’ => ‘Menu Principal’,
‘theme_location’ => ‘menu-principal’,
‘container’ => ”,
‘items_wrap’ => ‘<ul id=”%1$s” class=”dropdown”>%3$s’
)
); ?>
</div>
</nav>And this is the CSS:
nav {
float: left;
height: 35px;
width: 100%;
font-size: 14px;
font-weight: bold;
background: #a90329;
}.navwrap {
text-align: center;
width: 90%;
margin: 0 auto;
padding-top: 4px;
}nav ul.dropdown {
list-style: none;
float: left;
padding: 5px 10px 6px 0;
}nav ul.dropdown li {
display: inline;
position: relative;
z-index: 500;
text-align: left;
font-size: 14px;
cursor: default;
}nav ul.dropdown a {
padding:12px;
color: #eee;
text-decoration: none;
text-shadow: 0 1px 0 #000;
cursor: default;
}/* Estilo do link ao passar o mouse */
nav ul.dropdown li:hover a {
background: #444;
padding: 8px 10px 10px 10px;
height: 18px;
}/* Exibir links em blocos */
nav ul.dropdown li ul a {
display: block;
cursor: pointer;
}/* Submenus dropdown */
nav ul.dropdown ul {
list-style: none;
width: 200px;
position: absolute;
z-index:500;
}/* Esconder submenus */
nav ul.dropdown ul, nav ul.dropdown li:hover ul ul, nav ul.dropdown ul li:hover ul ul {
display: none;
}/* Exibir submenus ao passar o mouse */
nav ul.dropdown li:hover ul, nav ul.dropdown ul li:hover ul, nav ul.dropdown ul li ul li:hover ul {
display: block;
left: 0;
top: 26px;
}/* Mudar estilo dos itens do submenu ao passar o mouse */
nav ul.dropdown li * a:hover {
background: #666;
}/* Menu home */
nav ul.dropdown-home {
list-style: none;
float: left;
width: 30px;
padding: 5px 50px 6px 0;
}nav ul.dropdown-home li.home {
}nav ul.dropdown-home li.home a {
background: url(images/nav-home.png) no-repeat scroll center top transparent;
color: #882424;
height: 43px;
width: 86px;
padding: 5px 18px 20px 20px;
}Forum: Themes and Templates
In reply to: Centralize the HOME button and the Main MenuHello Andrew,
I thank you so much for your prompt help.
I understand your recommendation, but I could not make it work on my website.
Changed the class “navwrap” to 90% and kept the “margin: 0 auto”, but still could not center the menus.