summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/installation/upgrade_300.rst
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-01-07 15:13:03 +0100
committerAndrey Andreev <narf@devilix.net>2014-01-07 15:13:03 +0100
commitac023e10e7d9e4ad11783ff7e1154d2701a1ec18 (patch)
treec85d3443a95e08d0f0cdc12eabe7f38c458ffeb3 /user_guide_src/source/installation/upgrade_300.rst
parenta20ec975e653f501cca8e1cf57a9ea244417990f (diff)
Change Text helper default tag from <strong> to <mark>
Supersedes PR #1497
Diffstat (limited to 'user_guide_src/source/installation/upgrade_300.rst')
-rw-r--r--user_guide_src/source/installation/upgrade_300.rst20
1 files changed, 19 insertions, 1 deletions
diff --git a/user_guide_src/source/installation/upgrade_300.rst b/user_guide_src/source/installation/upgrade_300.rst
index ec80e8041..41153df16 100644
--- a/user_guide_src/source/installation/upgrade_300.rst
+++ b/user_guide_src/source/installation/upgrade_300.rst
@@ -488,4 +488,22 @@ The new function is both available at all times for you to use and shorter to ty
CodeIgniter 3.1+.
.. note:: This method is still available, but you're strongly encouraged to remove its usage
- sooner rather than later. \ No newline at end of file
+ sooner rather than later.
+
+***********************************************************
+Step 17: Check your usage of Text helper highlight_phrase()
+***********************************************************
+
+The default HTML tag used by :doc:`Text Helper <../helpers/text_helper>` function
+:func:`highlight_phrase()` has been changed from ``<strong>`` to the new HTML5
+tag ``<mark>``.
+
+Unless you've used your own highlighting tags, this might cause trouble
+for your visitors who use older web browsers such as Internet Explorer 8.
+We therefore suggest that you add the following code to your CSS files
+in order to avoid backwards compatibility with old browsers::
+
+ mark {
+ background: #ff0;
+ color: #000;
+ }; \ No newline at end of file