Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter gnazoa

    (@gnazoa)

    Slideshow title text is something that floats everywhere and it not stays always at the same distance from the image. Is it possible to fix this bug? Do you have some suggestion?

    Thread Starter gnazoa

    (@gnazoa)

    Yes please, do you have some suggestion?

    But the problem here is not only to place the text under the image. The problem is that when I resize the screen the text will separate a lot from the image, it will always stay static.

    Do you have a solution for that?

    Now I can see it but the problem is that even if I save my new it doesn’t change anything in my page.

    Hello, I’m having the same problem but I dont understand what you mean with ” I disabled the JJ NextGen JQuery Slider plugin”

    Thread Starter gnazoa

    (@gnazoa)

    I thing that is something inside this function:

    function initMainNavigation( container ) {
    
    		// Add dropdown toggle that displays child menu items.
    		var dropdownToggle = $( '<button />', {
    			'class': 'dropdown-toggle',
    			'aria-expanded': false
    		} ).append( $( '<span />', {
    			'class': 'screen-reader-text',
    			text: screenReaderText.expand
    		} ) );
    
    		container.find( '.menu-item-has-children > a' ).after( dropdownToggle );
    
    		// Toggle buttons and submenu items with active children menu items.
    		container.find( '.current-menu-ancestor > button' ).addClass( 'toggled-on' );
    		container.find( '.current-menu-ancestor > .sub-menu' ).addClass( 'toggled-on' );
    
    		// Add menu items with submenus to aria-haspopup="true".
    		container.find( '.menu-item-has-children' ).attr( 'aria-haspopup', 'true' );
    
    		container.find( '.dropdown-toggle' ).click( function( e ) {
    			var _this            = $( this ),
    				screenReaderSpan = _this.find( '.screen-reader-text' );
    
    			e.preventDefault();
    			_this.toggleClass( 'toggled-on' );
    			_this.next( '.children, .sub-menu' ).toggleClass( 'toggled-on' );
    
    			// jscs:disable
    			_this.attr( 'aria-expanded', _this.attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
    			// jscs:enable
    			screenReaderSpan.text( screenReaderSpan.text() === screenReaderText.expand ? screenReaderText.collapse : screenReaderText.expand );
    		} );
    	}
    	initMainNavigation( $( '.main-navigation' ) );
    
    	masthead         = $( '#masthead' );
    	menuToggle       = masthead.find( '#menu-toggle' );
    	siteHeaderMenu   = masthead.find( '#site-header-menu' );
    	siteNavigation   = masthead.find( '#site-navigation' );
    	socialNavigation = masthead.find( '#social-navigation' );
Viewing 6 replies - 1 through 6 (of 6 total)