Changes between Initial Version and Version 1 of Ticket #36183
- Timestamp:
- 03/09/2016 04:46:38 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36183
- Property Focuses ui rtl added
-
Property
Component
changed from
Formatting
toBundled Theme
-
Property
Summary
changed from
Incompatibility of Twenty Fourteen with Right-To-Left (RTL) webpages AND the default video player
toTwenty Fourteen: Incompatibility with Right-To-Left (RTL) webpages AND the default video player
-
Ticket #36183 – Description
initial v1 4 4 5 5 Apparently 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 {{{ 7 7 .primary-navigation ul ul, .primary-navigation ul ul ul { 8 8 left:auto; … … 13 13 right: auto; 14 14 } 15 15 }}} 16 16 which 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. 17 17 18 18 Second problem: The same problem also exists with the default Wordpress video player. Without the following tag: 19 19 {{{ 20 20 .mejs-offscreen{ 21 21 right: -10000px; 22 22 left: auto; 23 23 } 24 24 }}} 25 25 the video-player will also create a very long horizontal scroll bar. Please try to remove it from the page and see for yourself. 26 26