Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #36183


Ignore:
Timestamp:
03/09/2016 04:46:38 PM (8 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36183

    • Property Focuses ui rtl added
    • Property Component changed from Formatting to Bundled Theme
    • Property Summary changed from Incompatibility of Twenty Fourteen with Right-To-Left (RTL) webpages AND the default video player to Twenty Fourteen: Incompatibility with Right-To-Left (RTL) webpages AND the default video player
  • Ticket #36183 – Description

    initial v1  
    44
    55Apparently the menus are hidden to the fore-left, and then appear as drop-down when one hovers on them. Now the problem is that they really show up on the fore-left, creating an infinitely long horizontal scroll-bar. In the webpage, I fixed this problem using the CSS Tags:
    6 
     6{{{
    77    .primary-navigation ul ul, .primary-navigation ul ul ul {
    88        left:auto;
     
    1313        right: auto;
    1414    }
    15 
     15}}}
    1616which I got from an expert on Stackoverflow after this problem drove me really crazy because I, myself, am not a CSS expert. Anyway, please visit that page, and remove these tags, and see how the menus will appear, creating a very long horizontal scroll-bar that ruins the page.
    1717
    1818Second problem: The same problem also exists with the default Wordpress video player. Without the following tag:
    19 
     19{{{
    2020    .mejs-offscreen{
    2121        right: -10000px;
    2222        left: auto;
    2323    }
    24 
     24}}}
    2525the video-player will also create a very long horizontal scroll bar. Please try to remove it from the page and see for yourself.
    2626