Posts: 105
Threads: 10
Joined: Jul 2015
Posts: 1,108
Threads: 70
Joined: Aug 2009
You are missing
class="pure-menu-link"
Code:
<a href="http://getsimple.webcrow.jp/index.php?id=home" title="Home" class="pure-menu-link">Home</a>
on each of your A tags in the menu .
That should fix it.
Posts: 105
Threads: 10
Joined: Jul 2015
<ul class="pure-menu-list">
<?php get_navigation(return_page_slug()); ?>
</ul>
How should you fix "li" part?
Posts: 3,491
Threads: 106
Joined: Mar 2010
Code:
<?php get_navigation(return_page_slug(), "pure-menu-link "); ?>
Posts: 105
Threads: 10
Joined: Jul 2015
Thanks a lot, Carlos, I'LL try.
Posts: 105
Threads: 10
Joined: Jul 2015
<ul class="pure-menu-list">
<li class="pure-menu-item">
<a href="#" class="pure-menu-link">About</a>
</li>
</ul>
=====================================
<ul class="pure-menu-list">
<?php get_navigation(return_page_slug()); ?>
</ul>
How do you arrange this code?
Posts: 3,491
Threads: 106
Joined: Mar 2010
Sorry, the tip I posted is not valid for what you need.
Possible solutions are using the I18N plugin with Custom Rendering for navigation (
http://mvlcek.bplaced.net/get-simple/mul...-rendering ) or the Custom Navigation plugin (
http://get-simple.info/extend/plugin/cus...tion/1051/ )
Posts: 1,127
Threads: 136
Joined: Feb 2012
you can add the class with jquery. If you don't want to use a script look at the pure css and copy all the declarations for the pure-menu-item class and put them in your own theme css for nav li and the same for pure-menu-link to nav li a .
Posts: 105
Threads: 10
Joined: Jul 2015
Thanks a lot, I'll try!!!
Posts: 105
Threads: 10
Joined: Jul 2015
I gave up!
You are genius! teach me please.