Viewing 10 replies - 1 through 10 (of 10 total)
  • Hi Garrett, thanks for reporting. Which browser is that? I cannot reproduce this on Chrome or Firefox…

    Thread Starter Garrett Hyder

    (@garrett-eclipse)

    Hi @ravanh,

    I tested with Chrome (62.0.3202.94 (Official Build) (64-bit)) and Firefox (57.0) with the same issue. Inspecting it appears all the break elements have a display none forced on them;

    .options-media-php br {
        display: none;
    }

    Looking into the Code it appears that’s from wp-admin/css/common.css;

    .options-media-php br {
    	display: none;
    }
    
    @media screen and (max-width: 375px) {
    	.options-media-php input[type="number"][name*="_size_"] {
    		margin: 5px 0;
    	}
    	.options-media-php label[for*="_size_h"]:before {
    		content: '';
    		display: block;
    	}
    	.options-media-php br {
    		display: block;
    	}
    }

    Reference: https://github.com/WordPress/WordPress/blob/f4e974057ea98ad98b1d8f7173f35bda2e5ef1c3/wp-admin/css/common.css#L3934

    This seems to have been introduced in 4.9 as it’s not present in 4.8.3
    I can’t find the trac or exact commit but that seems to be the issue. So they (WP) made a decision to use br as mobile-only break. So maybe a best solution for them would have been to setup a class like .mobile-break and be specific with it, maybe worth a Trac ticket.

    Let me know if you need anything else,
    Cheers

    Amazing. And only for the options-media.php page…

    Thanks for the report and debugging work! I’ll release a fix soon.

    Version 1.6.2 should fix the issue. Please let me know if there still are problems ??

    Thread Starter Garrett Hyder

    (@garrett-eclipse)

    Thanks @ravanh, works nicely now.

    I opened a ticket with WP as well as it’s definitely odd to blanket all breaks like that suggested they be more specific.
    https://core.trac.www.ads-software.com/ticket/42724

    All the best,
    Cheers

    Thanks Garrett, I’ll be watching that ticket too ??

    I have a website with EasyFancy box. Usualy the tumbnails are square, I dont know why but it is not. Can you tell me what is going wrong?

    https://www.petruvoichescu.com/gravure/

    Thank you

    Denise

    Thread Starter Garrett Hyder

    (@garrett-eclipse)

    Hi @faucherd,

    You’ll be best served creating a new ticket next time as this one is resolved and won’t be monitored.

    But looking at your issue this isn’t a Easy Fancybox issue but rather your thumbnailing is set for softcrop, go into Settings > Media and check off the ‘Crop thumbnail to exact dimensions’. Then install ‘Force Regenerate Thumbnails’ plugin and run it to regenerate your thumbnails.

    If you continue to have issues with that you’ll want to open a new ticket in the General WordPress support forum as this isn’t really an Easy Fancybox issue.

    Cheers

    Thread Starter Garrett Hyder

    (@garrett-eclipse)

    FYI @ravanh, The Trac ticket was updated with a patch I’ve tested. When that gets into an official release I’ll let you know so you can revert the workaround if you’d like. Cheers

    Nice work! ??

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Latest loses style/breaks on setting page’ is closed to new replies.