Make WordPress Core

Changes between Version 1 and Version 12 of Ticket #36183


Ignore:
Timestamp:
01/16/2019 10:34:25 PM (5 years ago)
Author:
laurelfulford
Comment:

@samerafach Thanks for reporting this issue!

I can see the side-scrolling issue on your site linked above: http://link.afach.de/rtlproblem

... but I cannot recreate it when using Twenty Fourteen on a test site.

I tried working through your site in the Element Inspector, deleting items to rule them out -- the side-scroll appears to be coming from:

<div id="stcpDiv" style="position: absolute; top: -1999px; left: -1988px;">ShareThis Copy and Paste</div>

I'm not sure where this is coming from, whether it's something you can edit directly, or something in a plugin. If you can edit it directly, changing the left: -1988px to right: -1988px should fix it, like:

<div id="stcpDiv" style="position: absolute; top: -1999px; right: -1988px;">ShareThis Copy and Paste</div>

... and if you can't edit it directly, you should be able to change is using some custom CSS:

#stcpDiv {
    left: auto !important;
    right: -1988px !important;
}

@parsmizban thanks for the patch! It sounds like the issue was with the video player on the whole, not specific to Twenty Fourteen -- there was another ticket opened here by @samerafach: #36185

It has been closed due to lack of activity, but when I test it, it looks like the styles for .mejs-offscreen have changed (removing the left placement), so this should no longer be an issue:

.mejs-offscreen {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;

}

However, if this issue persists, please reopen #36185!

I'm going to close this issue, as I can't recreate either issue with a fresh install of Twenty Fourteen. But please let me know if there are any questions at all!

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36183

    • Property Status changed from new to closed
    • Property Milestone changed from Awaiting Review to
    • Property Keywords needs-testing has-patch added
    • Property Resolution changed from to worksforme
  • Ticket #36183 – Description

    v1 v12  
    1 First problem: There's a horrible bug in the Wordpress theme-foundation (Not only the Twenty-Fourteen theme that I currently use) that affects all objects that depend on the orientation, including drop-down menus. For example, in this page:
     1First problem: There's a horrible bug in the WordPress theme-foundation (Not only the Twenty-Fourteen theme that I currently use) that affects all objects that depend on the orientation, including drop-down menus. For example, in this page:
    22
    33http://link.afach.de/rtlproblem