diff options
-rw-r--r-- | templates/web/fixmystreet/header.html | 2 | ||||
-rw-r--r-- | web/cobrands/default/_colours.scss | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/templates/web/fixmystreet/header.html b/templates/web/fixmystreet/header.html index 8368d345a..bc9e16af8 100644 --- a/templates/web/fixmystreet/header.html +++ b/templates/web/fixmystreet/header.html @@ -1,5 +1,7 @@ [% SET html_att = ' lang="' _ lang_code _ '"'; + # For a right-to-left language, use the following line in your own header: + # SET html_att = html_att _ ' dir="rtl"'; -%] <!doctype html> <!--[if lt IE 7]><html class="no-js ie6 iel8"[% html_att %]><![endif]--> diff --git a/web/cobrands/default/_colours.scss b/web/cobrands/default/_colours.scss index e8c12f98e..5ac6cf8e7 100644 --- a/web/cobrands/default/_colours.scss +++ b/web/cobrands/default/_colours.scss @@ -1,3 +1,8 @@ +/* LAYOUT */ + +// If you are wanting a right-to-left layout, uncomment the following line. +// $direction: right; + /* COLOURS */ $orange: #ff9900; |