Forum Replies Created

Viewing 15 replies - 16 through 30 (of 48 total)
  • Thread Starter michaelb428ping

    (@michaelb428ping)

    Oops, I left out the “logo position fix” css for desktop width. Here it is again:

    .site-logo {
    	display: inline-block !important;
    }
    
    .home .entry-header {
    	/* hide H1 on home */
    	display: none;
    }
    
    /* for myStickymenu plugin */
    .home #mysticky-nav .site-header {
    	z-index: 10;
    }
    
    @media screen and (min-width: 801px) {
    /* desktop width */
    
    	/* logo position fix */
    		.site-header .inside-header {
    			flex-direction: row;
    		}
    
    	.socialLinks {
    		width: 100%;
    		display: flex !important;
    		flex-direction: column;
    		flex-wrap: wrap;
    		float: right !important;
    		text-align: right !important;
    	}
    
    }
    
    @media screen and (min-width: 768px) and (max-width: 800px)  {
    /* tablet width */
    	
    	/* logo position fix */
    		.site-header .inside-header {
    			flex-direction: row;
    		}
    	
    	.socialLinks {
    		width: 100%;
    		display: flex !important;
    		flex-direction: column;
    		flex-wrap: wrap;
    		float: right !important;
    		text-align: right !important;
    	}
    	
    }

    Thank you.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    Hello Fernando,

    That worked, thank you!

    However as a result of doing that, the navigation menu moved to the left a little. How can I get the navigation menu back to be aligned/floated right again?

    http://a3q.179.myftpupload.com/

    I’m using the following custom CSS for desktop/tablet responsive width:

    .site-logo {
    	display: inline-block !important;
    }
    
    .home .entry-header {
    	/* hide H1 on home */
    	display: none;
    }
    
    /* for myStickymenu plugin */
    .home #mysticky-nav .site-header {
    	z-index: 10;
    }
    
    @media screen and (min-width: 801px) {
    /* desktop width */
    
    	.socialLinks {
    		width: 100%;
    		display: flex !important;
    		flex-direction: column;
    		flex-wrap: wrap;
    		float: right !important;
    		text-align: right !important;
    	}
    
    }
    
    @media screen and (min-width: 768px) and (max-width: 800px)  {
    /* tablet width */
    	
    	/* logo position fix */
    		.site-header .inside-header {
    			flex-direction: row;
    		}
    	
    	.socialLinks {
    		width: 100%;
    		display: flex !important;
    		flex-direction: column;
    		flex-wrap: wrap;
    		float: right !important;
    		text-align: right !important;
    	}
    	
    }

    Thank you.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    Yes, that worked — thank you so much! 🙂

    For those reading this, I restored the three footer columns in side-by-side arrangement for tablet width with this custom CSS:

    @media screen and (min-width: 768px) and (max-width: 800px)  {
    /* tablet width */
    
    	/* restyle footer columns */
    	.inside-footer-widgets {
    		display: block !important;
    		flex-wrap: wrap;
    	}
    	
    	.inside-footer-widgets .footer-widget-1, .inside-footer-widgets .footer-widget-2, .inside-footer-widgets .footer-widget-3 {
    		width: 30%;
    		clear: none;
    	}
    
    	.inside-footer-widgets .footer-widget-1 {
    		margin-bottom: 0 !important;
    	}
    	
    	.inside-footer-widgets .footer-widget-2 {
    		text-align: center !important;
    		margin-top: -26px;
    		margin-left: 30%;
    		margin-right: 30%;
    		margin-bottom: 0 !important;
    	}
    	
    	.inside-footer-widgets .footer-widget-3 {
    		margin-top: -25px;
    		float: right !important;
    	}
    		
    }
    Thread Starter michaelb428ping

    (@michaelb428ping)

    I set up a test environment here to look at:
    http://a3q.179.myftpupload.com

    You may need to resize your Web browser window precisely at 768px wide, but when you do (portrait orientation) the screen looks like this with the logo centered:
    http://a3q.179.myftpupload.com/wp-content/uploads/tablet-width-screenshot.jpg

    I would like for the logo to be aligned left in portrait orientation tablet width (min-width: 768px and max-width: 800px,) just like it is in desktop width (min-width: 801px.) What custom CSS should I use in my tablet width media query?

    Thank you.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    I was testing GeneratePress in MAMP — which sets up a local server environment — so that’s not reachable from the outside.

    I will see if I can set something up on a more public server in the next few days.

    If you need to log in, please let me know how I can send you a private message with the login information — there doesn’t seem to be a way to do that here on wordpress.org.

    Thank you.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    OK, so that needs to be done with CSS.

    I now have media queries set up with width ranges, and the footer in tablet width behaving in columns again. However, I can’t seem to get the header logo to float left and the nav menu to float right — even with !important overrides.

    What CSS should I use to have the logo on the left and nav menu on the right so it appears as it does in desktop width?

    Thank you.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    Oh, that’s one I haven’t tried yet. Thank you!

    That works… sort of. For “generate_not_mobile_menu_media_query” I had to add this in after the min-width value assignment line in order to have a tablet width range (instead of the wanted appearance at a single tablet width value):
    return ‘(max-width: 800px)’;

    The menu now shows in tablet width, thank you! I usually have my tablet width separate so I can make CSS adjustments for that width only. I also have different CSS adjustments for desktop width, which are separate from tablet width.

    But there are two odd things now — basically, I’m trying to make the tablet width responsive behavior act and appear like it does in desktop width.

    1) Strangely, the logo is now centered (and centered only at 768px window width) instead of aligned left like it appears in desktop width. Is there a filter I can add to make the logo appear aligned left in my tablet width range (768px to 800px)?

    2) Also, I have three columns in the footer, which now wrap (stack one atop each other) like in mobile width instead of appear side-by-side like they do in desktop width. Is there a filter I can add to make the footer columns appear side-by-side like they do in desktop width?

    For the record, I now have this in my child theme’s functions.php file:

    add_filter( 'generate_mobile_menu_media_query', function() {
    	return '(max-width: 766px)';
    } );
    
    add_filter( 'generate_not_mobile_menu_media_query', function() {
    	return '(min-width: 768px)';
    	return '(max-width: 800px)';
    } );

    We’re almost there…

    Thank you for your help!

    Thread Starter michaelb428ping

    (@michaelb428ping)

    The plugin I used to install an older version — available in the WordPress Plugins directory — is called “WP Rollback.”

    Once installed in your version of WordPress, bring up its Plugins page, find the plugin in question, click its rollback link, then select the version to swap in and use.

    It’s quite handy for recovering from bugs in updated plugins.

    Also make sure the WordPress auto-update feature is disabled for the plugin in question, or else you’ll be back where you started (with the plugin’s latest version and its issues.)

    Thread Starter michaelb428ping

    (@michaelb428ping)

    Hello Nikita,

    Yes, that fixed the distortion issue!

    It seems that CSS was in there to compensate for the client wanting to have a large caption (226 characters) which made the image smaller to accomodate that.

    It’s strange that Safari didn’t scale the image proportionally when that bottom padding was added (while Chrome and Firefox did scale the image proportionally.)

    Thank you for your help!

    Thread Starter michaelb428ping

    (@michaelb428ping)

    I will also mention this is a one-page Website. The all the top navigation links are anchors to areas on different locations of the same page.

    Thank you.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    I can now confirm the newly released Master Slider free 3.7.10 and Master Slider Pro 3.5.9 have now fixed this problem.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    Thank you for the information. Unfortunately, our client needs the functionality of what Subscribe2 does but with extra fields.

    Maybe you might consider adding the capability for extra fields in a future version of Subscribe2? If not, would you happen to know of any plugins similar to Subscribe2 which do offer extra fields?

    Thank you.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    Does weMail send e-mail notifications to a list of subscribers when new content is posted in WordPress? Thank you.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    When I upgraded to 18.3, my entry on the back-end “PPOM Meta List” page was not there anymore. I had to make a new entry on that page, then add back my fields from the “Product Meta Basic Settings / Add PPOM Fields” page.

    Thread Starter michaelb428ping

    (@michaelb428ping)

    The only way I “resolved” the missing fields issue was to type the fields back in again.

    I’m sorry to say there wasn’t a way to restore the missing fields.

Viewing 15 replies - 16 through 30 (of 48 total)