GetSimple Support Forum

Full Version: Can anybody fix this?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
<ul class="pure-menu-list">

<?php get_navigation(return_page_slug()); ?>

</ul>

How should you fix "li" part?
Code:
<?php get_navigation(return_page_slug(), "pure-menu-link "); ?>
Thanks a lot, Carlos, I'LL try.
<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?
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/ )
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 .
Thanks a lot, I'll try!!!
I gave up!

You are genius! teach me please.