| 1 |
$Id: $
|
| 2 |
|
| 3 |
UBIQUITY DRUPAL THEME
|
| 4 |
|
| 5 |
Copyright: Attila Beregszászi, melon@m42.hu
|
| 6 |
Website: http://drupal.m42.hu/
|
| 7 |
Theme design and CSS concepts by Attila Beregszászi.
|
| 8 |
|
| 9 |
Contains but not built upon the ideas and concepts implemented in the
|
| 10 |
Drupal Zen project (http://drupal.org/project/zen)
|
| 11 |
|
| 12 |
|
| 13 |
ABOUT
|
| 14 |
=====
|
| 15 |
Ubiquity tries to implement a generic look found or sought by many webpage
|
| 16 |
owners. It is completely valid XHTML Strict 1.0 and CSS 2.0.
|
| 17 |
Using the anyorder columns layout style it will make your pages search
|
| 18 |
engine friendly as the main content column comes first in the html.
|
| 19 |
|
| 20 |
|
| 21 |
REQUIREMENTS
|
| 22 |
============
|
| 23 |
- Drupal 5.1 or greater
|
| 24 |
- PHPTemplate theme engine (included in a standard Drupal-5.x package)
|
| 25 |
|
| 26 |
|
| 27 |
KNOWN ISSUES
|
| 28 |
============
|
| 29 |
|
| 30 |
misc/textarea.js needs to be patched in Drupal 5.1
|
| 31 |
--------------------------------------------------
|
| 32 |
Since Ubiquity uses floated elements such as the resizable textarea element,
|
| 33 |
it suffers from the infamous wrapping bug when using IE6 (not sure about IE7)
|
| 34 |
|
| 35 |
See http://drupal.org/node/101305#comment-195002
|
| 36 |
and apply the patch attached in the comment.
|
| 37 |
|
| 38 |
If you have trouble patching, simply open misc/textarea.js and replace line
|
| 39 |
7 with the following two lines:
|
| 40 |
|
| 41 |
// When wrapping the text area, work around an IE margin bug.
|
| 42 |
$(this).wrap('<div class="resizable-textarea"><span></span></div>')
|