AppleEater Posted February 3, 2013 Share Posted February 3, 2013 מישהו יודע איך מוסיפים תמיכה ב- rtl.css בתבנית ה- mobile בגרסת PS 1.5.3 Link to comment Share on other sites More sharing options...
yaniv14 Posted February 3, 2013 Share Posted February 3, 2013 same as you do in the regular site, just in mobile/css/global.css instead. Link to comment Share on other sites More sharing options...
AppleEater Posted February 4, 2013 Author Share Posted February 4, 2013 מצאתי את הפתרון: כמובן, ראשית יש להעתיק את ספריית /themes/default/mobile תחת ספריית התבנית שלכם, כך: /themes/MYTHEME/mobile 1. מוסיפים את הקוד הבא לקובץ (תודה ל- pina0) themes/MYTHEME/header.tpl אחרי הקוד הזה: {if isset($css_files)} {foreach from=$css_files key=css_uri item=media} <link href="{$css_uri}" rel="stylesheet" type="text/css" media="{$media}" /> {/foreach} {/if} מוסיפים את הקוד הבא: {foreach from=$languages key=k item=language name="languages"} {if $language.iso_code == $lang_iso} {if $language.is_rtl == 1} <link href="{$css_dir}rtl.css" rel="stylesheet" type="text/css" media="{$media}" /> {/if} {/if} {/foreach} 2. בקובץ rtl.css שנמצא במסלול הבא, מוסיפים את השורות הבאות: themes/MYTHEME/css/rtl.css /* Mobile CSS changes */ .ui-header .ui-title,.ui-footer .ui-title { text-align:right !important; } .ui-content .ui-listview-inset { text-align:right !important; } .ui-li, .ui-li.ui-field-contain { text-align:right !important; list-style-type: none !important; } .ui-body-c, .ui-body-c input, .ui-body-c select, .ui-body-c textarea, .ui-body-c button { text-align:right !important; float:right !important; direction: rtl !important; } .ui-btn-text { text-align:right !important; direction:rtl; } ui-overlay-c { text-align:right !important; direction:rtl; } .ui-collapsible-heading .ui-btn-inner, .ui-collapsible-heading .ui-btn-icon-left .ui-btn-inner { text-align:right !important; direction:rtl !important; } בעיה אחת שטרם הצלחתי להתגבר עליה היא להציג את המוצרים הנוספים מאותה קטגוריה בתצורת מטריצה (גריד) במקום ברשימה עם בולטים. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now