RTL support

I need RTL support for the JM Anion
please help

5 answers

congtq 0.00 $tone August 4, 2010
Public

Dear ahmedmigoo.
Sorry, I can’t help much for you. Because of to display RTL language it will take you change almost css and phtml files.
So I only give you some suggests with Homepage:
1. Open app\design\frontend\default\jm_aniontemplate\page \3columns.phtml file.
There are two columns left and right (they are in the middle <!-- COLUMN -->), you need to swap their positions.
2. you need to change some code in skin\frontend\default\jm_anion\css\layout.css
Replace

Code:

/*main content---*/
#ja-content { clear: both; display: block; float: left; width: 660px;}
#ja-current-content { float: right; width: 500px; }

/*columns---*/
#ja-col1 { width: 160px;}
#ja-col2 { float: right; width: 280px; }

with

Code:

/*main content---*/
#ja-content { clear: both; display: block; float: left; width: 780px;}
#ja-current-content { float: right; width: 500px; }

/*columns---*/
#ja-col1 { width: 160px; float: right}
#ja-col2 { float: left; width: 280px; }

3. You also need edit skin\frontend\default\jm_anion\images\col3-bg.jpg

Hope above information is useful for you.

#4

This question is now closed

Written By

Comments