Support » Plugin: T&P Navigation Menu » Transparant menu does not work good

  • The menu is not solid but transparant. When the site is visit with a Smartphone the menu is over the text of the site and you can not read the menu or the text on the site.

    It was just what I was looking for but it is not working good!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author pey22

    (@pey22)

    Hello Beadmaking
    you can see example legestecommercial.com
    work excellent with mobile.
    and if you know css and js you can change the menu design.
    Do not forget that this is the first version and it will improve in the future.

    Thread Starter Beadmaking

    (@beadmaking)

    I see that it works at your site. I would like to have it that way also.
    So I have installed it on my site again:
    http://www.margrieten.nl

    And then you can see what I ment, when you visit it mobile.

    Thread Starter Beadmaking

    (@beadmaking)

    When I switch to another page, the nav menu becomes transparant.

    Plugin Author pey22

    (@pey22)

    First it is not my site its someone that use my plugin.
    Secondly If you have been read the Support you will know how to change it for your needs.
    you should not give the plugin one star because you dont love my design the plugin works excellent in all browsers and mobiles.

    Anyway read the support and if you do not know what to do I will help you and i hope you fix your Reviews.

    Thread Starter Beadmaking

    (@beadmaking)

    I am sorry you are disappointed about my one star. But you gave it yourself 5 stars and that I find misleading. Because I thought it was a very good plugin.

    I have a very clean theme so the plugin just had to work. It is not the design, I find it a bug!
    The home page has a nice brown background and on the other pages it is transparant. So I can not read the text on my page and in the menu.

    I can do nothing about the that. When I would be a programmer I did not need a plugin for it.

    So, sorry, but I will still be one star from me. Until I can install a plugin, and easy change the background in transparant or not transparant. Just that.

    Plugin Author pey22

    (@pey22)

    The plugin works well ,It tested on this specific theme and upload to wordpress repository after many tests.
    if you have some personal problems with the plugin you should make ticket in the support form.(For things like that it there).
    and not rate poorly unjustly the plugin.
    I gave it five stars cus is my right it should not hurt you.
    100 people use it and it’s good for them.
    if you what to fix your problem insert plugins/tp-navigation-menu/js/tp_navigation.js open the file in notepad delete all thet you have there and copy past this:

    jQuery(function() {
    
    	// grab the initial top offset of the navigation
    	var tp_navigation_offset_top = jQuery('#navbar').offset().top;
    
    	// our function that decides weather the navigation bar should have "fixed" css position or not.
    	var tp_navigation = function(){
    		var scroll_top = jQuery(window).scrollTop(); // our current vertical position from the top
    
    		// if we've scrolled more than the navigation, change its position to fixed to stick to top, otherwise change it back to relative
    		if (scroll_top > tp_navigation_offset_top) {
    			jQuery('#navbar').css({ 'position': 'fixed', 'top':0 });
    			jQuery('#navbar').css({ 'box-shadow': '0 0 5px #999999' });
    		} else {
    			jQuery('#navbar').css({ 'position': 'relative' });
    			jQuery('#navbar').css({ 'box-shadow': 'none' });
    		}
    	};
    
    	// run our function on load
    	tp_navigation();
    
    	// and run it again every time you scroll
    	jQuery(window).scroll(function() {
    		 tp_navigation();
    	});	
    
    });
    Thread Starter Beadmaking

    (@beadmaking)

    Thank you! When I was not frustrated anymore, I installed it again and used the code above.
    Now it is working!

    Why is not that code in the plugin?
    Perhaps the next version?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Transparant menu does not work good’ is closed to new replies.