Creating a page and using Full HTML for extra formatting can give strange results.
2 examples, probably each unrelated to one another are as follows.

A simple example is attempting to center an image. Wrapping the image in a
will center the image in other themes tested (Garland, Chameleon), but leaves the
image on the left in Marinelli. Other methods for centering produced the same
results. This behavior occurred in both IE7 and FF2.0.0.12

Another example issue, which may have valid HTML reasoning behind it, is having an
image and table, whose width together exceeds the content column. Other tested
themes (the above two, as well as Marvin and Minnilli) wrapped the content such that
the table following the image would appear underneath. In Marinelli, the tables would
draw over top of the right hand columns. This behavior occurred in FF2.0.0.12, but
NOT in IE7, where the content wrapped. (Obviously this can be worked around by
inserting more formatting, such as extra
tags or tables, but is not optimal).

Love the theme!

CommentFileSizeAuthor
#2 Garland Test.JPG49.59 KB_plucky
#2 Marinelli Test.JPG72.29 KB_plucky
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Lioz’s picture

how are you trying to align the image? inline styles or through TINY or FCK?
however i know that table wrapping has some bug i'll check it!

_plucky’s picture

FileSize
72.29 KB
49.59 KB

I was using FCKEditor (2.6 Beta), but generally edited the code manually.
I also just tested by disabling the FCKEditor module and using the plain text editor in Full HTML mode.
Attempted centering methods used were: <center> tags, a table with 100% width and a <td align=center>,
and <div align=center>. In previous tests I believe I also tried some different .css centering tricks.
All of the above worked properly in Garland (in the latest test), but not in Marinelli.
When using the FCKEditor, all of them also displayed properly inside the editor window (when in WYSIWYG mode).
FCKEditor is giving me some other issues, but those aren't related to the theme (and a good reason to test
with the FCKEditor module disabled).

<center><img width="320" height="240" border="1" alt="" src="Bla bla bla" /></center><br><br><br><br><br><br><br><br>

<table width=100%><tr><td align=center><img width="320" height="240" border="1" alt="" src="Bla Bla Bla" /></td></tr></table><br>

<div align=center><img width="320" height="240" border="1" alt="" src="Bla Bla Bla" /></div>

Attached are the results of the above test

Lioz’s picture

I think center and align tags are deprecated in xhtml strict, so don't use them.
try using

img.someclass{margin:0px auto;} 

to center an img in your document.

_plucky’s picture

Thanks for the help so far.

img.someclass{margin:0px auto;}

The above did not work in any theme.

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto }

This worked in Garland, but not in Marinelli. In fact, in the test where the Page
consisted only of the image with either of the codes above, the display of the
Front Page became corrupted, placing the Teaser of the page following this one
slightly to the right of this teaser (like the first 2 images of the Marinelli Test.JPG
above).

FYI, I am still using plain text input for these tests (will either FCK or TINY work
with strict XHTML and all of the depreciated tags they use for formatting, such
as Tables in FCK for formatting content other than strictly Tabular Data)?

Please let me know if this is a reproducible bug, I don't like using Issues for
"Tech Support" purposes (and I'll figure some solutions/workarounds on my own),
but if it is in fact a reproducible bug, then I'll keep at it!

oadaeh’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

This issue is being closed because it is against a branch for a version of Drupal that is no longer supported.
If you feel that this issue is still valid, feel free to re-open and update the issue (and any possible patch) to work with the 7.x-4.x branch.
Thank you.