Plugin info

Total downloads: 3,281
Active installs: 10
Total reviews: 2
Average rating: 3
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 1/21/2013 (4726 days ago)
Added to WordPress: 12/17/2012 (13 years old)
Minimum WordPress version: 3.3.2
Tested up to WordPress version: 3.5.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4726 days ago • 2 reviews

22/100

Is WP Select Box Navi abandoned?

Possibly abandoned (last update 4726 days ago).

Compatibility

Requires WordPress: 3.3.2
Tested up to: 3.5.2
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Select and Multi-Select Field for Contact Form 7
Rating 4.0/5 (6 reviews)Active installs 3,000

Description

Mobile Navigation
This Plugin adds an select box navigation and font size support for mobile devices to your WordPress template.

More Inforrmation
For more information visit the plugin website.
http://wordpress.guesmo.com/

Thanks to
WP Select Box Navi uses TinyNav.js, the jQuery responsive navigation plugin.

Installation

  1. Make sure your Theme using wp_head();! If not, add the function <?php wp_head(); ?> to the “header.php” file in your theme directory right before the closing </head> tag.
  2. Install the Plugin from the dashboard or download it from wordpress.org and load the folder “wp_select_box_navi” in to the “http://www.my-blog.com/wp-content/plugins/” directory
  3. Activate the Plugin from plugin menu in the WordPress dashboard
  4. Add the following CSS styles to your Theme stylesheet:

    Show or hide the default navigation

    .nav { display: none } /* hide default navi */
    

    -> or

    .nav { display: block } /* show default navi */
    

    Show or hide the select box navigation

    .tinynav { display: none } /* hide select box navi */
    

    -> or

    .tinynav { display: block } /* show select box navi */
    

    With adding CSS Media Queries to your styles you can switch both navigations by display size

    @media screen and (min-width: 1024px) /* show default if screen is larger than 1024px with */
    {
    .nav { display: block }
    .tinynav { display: none }
    }

    @media screen and (max-width: 1023px) /* show select box if screen is smaller than 1024px with */
    {
    .nav { display: none }
    .tinynav { display: block }
    }

Frequently Asked Questions

Dont be to shy to ask @ [email protected]

No Questions jet

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.3 January 21, 2013
* Supporting WordPress bookmarks
* Adding CSS for displaying select box individually by using different navigation types, like showing select box for pages and default for category navigation.
* Optimizing and cleaning code
* Adding code documentation for including custom styles and Java Script

0.2 December 18, 2012
* Supporting WordPress 3.5
* Cleaning up 😀