eCommerce construction > Templates

Template from right to left

(1/2) > >>

sleem:
hello all
How to make a template from left to right and vice versa
Now in CSS files, supports the direction from left to right and also from right to left
style.css and style-rtl.css
What is PHP Code
Which allows changing between CSS files in the head.tpl

abantecart:
RTL Can we activated based on language setting
--- Code: ---$this->language->get('direction')
--- End code ---

This is available in  common/page.php for example.
/public_html/storefront/controller/common/page.php
public_html/admin/view/default/template/common/page.tpl

You can add this to head.php and head.tpl and load different CSS if needed.

sleem:
Will explain to you
The language arabic = style-rtl.css
The language English= style.css
When activating the Arabic Language you want to print the file style-rtl.css
and When activating the English Language you want to print the file style.css
Because thestyle-rtl.css completely different from the style.css file in your design
this is what I want

abantecart:
Exactly right. You can include different css file in head.tpl. Do you need help with exact coding instructions? 

sleem:
Yes, I want to know the code
I am learning the language of php I am not a professional
Please type the correct code

$faster_browser_rendering = false;

if($faster_browser_rendering == true) {
?>
   <style><?php echo $this->LoadMinifyCSS('/stylesheet/bootstrap.min.css'); ?></style>
   <style><?php echo $this->LoadMinifyCSS('/stylesheet/bootstrap-rtl.css'); ?></style>
   <style><?php echo $this->LoadMinifyCSS('/stylesheet/flexslider.css'); ?></style>
   <style><?php echo $this->LoadMinifyCSS('/stylesheet/onebyone.css'); ?></style>
   <style><?php echo $this->LoadMinifyCSS('/stylesheet/font-awesome.min.css'); ?></style>
   <style><?php echo $this->LoadMinifyCSS('/stylesheet/fonts.google.css'); ?></style>
   <style><?php echo $this->LoadMinifyCSS('/stylesheet/style.css'); ?></style>   
<?php } else { ?>
   <link href="<?php echo $this->templateResource('/stylesheet/bootstrap.min.css'); ?>" rel="stylesheet" type='text/css' />
   <link href="<?php echo $this->templateResource('/stylesheet/bootstrap-rtl.css'); ?>" rel="stylesheet" type='text/css' />
   <link href="<?php echo $this->templateResource('/stylesheet/flexslider.css'); ?>" rel="stylesheet" type='text/css' />
   <link href="<?php echo $this->templateResource('/stylesheet/onebyone.css'); ?>" rel="stylesheet" type='text/css' />
   <link href="<?php echo $this->templateResource('/stylesheet/font-awesome.min.css'); ?>" rel="stylesheet" type='text/css' />
   <link href="<?php echo $this->templateResource('/stylesheet/fonts.google.css'); ?>" rel="stylesheet" type='text/css' />
   <link href="<?php echo $this->templateResource('/stylesheet/style.css'); ?>" rel="stylesheet" type='text/css' />
<?php } ?>




Thank you

Navigation

[0] Message Index

[#] Next page

Go to full version
Powered by SMFPacks Social Login Mod