diff options
author | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2002-03-25 20:32:36 +0000 |
---|---|---|
committer | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2002-03-25 20:32:36 +0000 |
commit | d153981485f5fc30288dc5a086e4a5ad74f63a71 (patch) | |
tree | 59b30c87241f28e3bb562f9bf0bbe9e6c2004903 | |
parent | 306d47a09b54257ab245b3c366df2387d014b40c (diff) | |
download | forums-d153981485f5fc30288dc5a086e4a5ad74f63a71.tar forums-d153981485f5fc30288dc5a086e4a5ad74f63a71.tar.gz forums-d153981485f5fc30288dc5a086e4a5ad74f63a71.tar.bz2 forums-d153981485f5fc30288dc5a086e4a5ad74f63a71.tar.xz forums-d153981485f5fc30288dc5a086e4a5ad74f63a71.zip |
Fixing bug 520011-multiple inline images break layout in NS. Tom sent this to me, so here it is.
git-svn-id: file:///svn/phpbb/trunk@2434 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/templates/subSilver/formIE.css | 1 | ||||
-rw-r--r-- | phpBB/templates/subSilver/subSilver.css | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/templates/subSilver/formIE.css b/phpBB/templates/subSilver/formIE.css index 9e4bf2ceb4..fde54cb138 100644 --- a/phpBB/templates/subSilver/formIE.css +++ b/phpBB/templates/subSilver/formIE.css @@ -16,3 +16,4 @@ border-bottom-width : 1px; border-left-width : 1px; } +.postbody { line-height: 18px} diff --git a/phpBB/templates/subSilver/subSilver.css b/phpBB/templates/subSilver/subSilver.css index 7dc0869751..ba58268159 100644 --- a/phpBB/templates/subSilver/subSilver.css +++ b/phpBB/templates/subSilver/subSilver.css @@ -140,7 +140,7 @@ a.topictitle:hover { text-decoration: underline; color : #DD6900; } /* The content of the posts (body of text) */ -.postbody { font-size : 12px; line-height: 18px} +.postbody { font-size : 12px;} a.postlink:link { text-decoration: none; color : #006699 } a.postlink:visited { text-decoration: none; color : #5493B4; } a.postlink:hover { text-decoration: underline; color : #DD6900} |