Jump to content

עזרה בהוספת תמיכה בישור לימין בתבנית המובייל


AppleEater

Recommended Posts

מצאתי את הפתרון:

 

כמובן, ראשית יש להעתיק את ספריית

/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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...