image2post: css.txt
| File css.txt, 698 bytes (added by ckr, 7 years ago) |
|---|
| Line | |
|---|---|
| 1 | By adding the following into your stylesheet you get the desired result. |
| 2 | |
| 3 | /* floating pictures in itembody */ |
| 4 | .leftbox { |
| 5 | float: left; |
| 6 | margin-right: 10px; |
| 7 | border: 1px solid #000; |
| 8 | padding: 2px; |
| 9 | text-align: center; |
| 10 | background-color: #fff; |
| 11 | } |
| 12 | .leftbox img { |
| 13 | display: block; |
| 14 | position: relative; |
| 15 | background-color: #fff; |
| 16 | border: 1px solid #a9a9a9; |
| 17 | padding: 4px; |
| 18 | line-height:0px; |
| 19 | } |
| 20 | .rightbox { |
| 21 | float: right; |
| 22 | margin-left: 10px; |
| 23 | |
| 24 | border: 1px solid #000; |
| 25 | padding: 2px; |
| 26 | text-align: center; |
| 27 | background-color: #fff; |
| 28 | } |
| 29 | .rightbox img { |
| 30 | display: block; |
| 31 | position: relative; |
| 32 | background-color: #fff; |
| 33 | border: 1px solid #a9a9a9; |
| 34 | padding: 4px; |
| 35 | line-height:0px; |
| 36 | } |
