Hello,
With module not understand what you mean, in joomla you may connect only menu with template
With template you may do so:
in file
{site]/templates/a1syria_original/css/template_rtl.css
find code
Code: |
#content > div.inner {
color: #000000;
text-align: right;
}
|
and replace to
Code: |
#content > div.inner {
color: #000000;
text-align: left;
}
|
or
sitecomponents/com_vehiclemanager/includes/vehiclemanager.css
find code
.
Code: |
basictable_27 .col_01, .basictable_28 .col_01 {
color: #787878;
display: block;
float: left;
font-size: 14px;
overflow: hidden;
width: 150px;
}
|
and replace to:
Code: |
.basictable_27 .col_01, .basictable_28 .col_01 {
color: #787878;
display: block;
float: right;
font-size: 14px;
overflow: hidden;
width: 150px;
}
|
Thanks,
Ordasoft team