diff options
author | Jonathan Stanley <shs@users.sourceforge.net> | 2007-04-30 14:13:17 +0000 |
---|---|---|
committer | Jonathan Stanley <shs@users.sourceforge.net> | 2007-04-30 14:13:17 +0000 |
commit | cb3a794672f0ff519ae916c81aaa6599a8a91b3e (patch) | |
tree | e67e08860f544e3630ae7d3d4813dbf141d790b3 /phpBB/language/en/help_bbcode.php | |
parent | 55c63abec1614b15e39c7f87b2bb0bad130cc28a (diff) | |
download | forums-cb3a794672f0ff519ae916c81aaa6599a8a91b3e.tar forums-cb3a794672f0ff519ae916c81aaa6599a8a91b3e.tar.gz forums-cb3a794672f0ff519ae916c81aaa6599a8a91b3e.tar.bz2 forums-cb3a794672f0ff519ae916c81aaa6599a8a91b3e.tar.xz forums-cb3a794672f0ff519ae916c81aaa6599a8a91b3e.zip |
#10123
[size=] doesn't accept "nnn%" formats anyway... only "nnn".
git-svn-id: file:///svn/phpbb/trunk@7436 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/help_bbcode.php')
-rw-r--r-- | phpBB/language/en/help_bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/language/en/help_bbcode.php b/phpBB/language/en/help_bbcode.php index a66e64aae9..b663776782 100644 --- a/phpBB/language/en/help_bbcode.php +++ b/phpBB/language/en/help_bbcode.php @@ -44,7 +44,7 @@ $help = array( ), array( 0 => 'How to change the text colour or size', - 1 => 'To alter the colour or size of your text the following tags can be used. Keep in mind that how the output appears will depend on the viewers browser and system: <ul><li>Changing the colour of text is achieved by wrapping it in <strong>[color=][/color]</strong>. You can specify either a recognised colour name (eg. red, blue, yellow, etc.) or the hexadecimal triplet alternative, eg. #FFFFFF, #000000. For example, to create red text you could use:<br /><br /><strong>[color=red]</strong>Hello!<strong>[/color]</strong><br /><br />or<br /><br /><strong>[color=#FF0000]</strong>Hello!<strong>[/color]</strong><br /><br />will both output <span style="color:red">Hello!</span></li><li>Changing the text size is achieved in a similar way using <strong>[size=][/size]</strong>. This tag is dependent on the template the user has selected but the recommended format is a numerical value representing the text size in percent, starting at 20 through to 200 (very large) by default. For example:<br /><br /><strong>[size=30]</strong>SMALL<strong>[/size]</strong><br /><br />will generally be <span style="font-size:30%;">SMALL</span><br /><br />whereas:<br /><br /><strong>[size=200%]</strong>HUGE!<strong>[/size]</strong><br /><br />will be <span style="font-size:200%;">HUGE!</span></li></ul>' + 1 => 'To alter the colour or size of your text the following tags can be used. Keep in mind that how the output appears will depend on the viewers browser and system: <ul><li>Changing the colour of text is achieved by wrapping it in <strong>[color=][/color]</strong>. You can specify either a recognised colour name (eg. red, blue, yellow, etc.) or the hexadecimal triplet alternative, eg. #FFFFFF, #000000. For example, to create red text you could use:<br /><br /><strong>[color=red]</strong>Hello!<strong>[/color]</strong><br /><br />or<br /><br /><strong>[color=#FF0000]</strong>Hello!<strong>[/color]</strong><br /><br />will both output <span style="color:red">Hello!</span></li><li>Changing the text size is achieved in a similar way using <strong>[size=][/size]</strong>. This tag is dependent on the template the user has selected but the recommended format is a numerical value representing the text size in percent, starting at 20 through to 200 (very large) by default. For example:<br /><br /><strong>[size=30]</strong>SMALL<strong>[/size]</strong><br /><br />will generally be <span style="font-size:30%;">SMALL</span><br /><br />whereas:<br /><br /><strong>[size=200]</strong>HUGE!<strong>[/size]</strong><br /><br />will be <span style="font-size:200%;">HUGE!</span></li></ul>' ), array( 0 => 'Can I combine formatting tags?', |