text formatting is not working under 7.4. i still can see only plain text as a result or preview. another themes doesnt have this problem.

CommentFileSizeAuthor
#8 styles2.diff396 bytesmicheas
#4 styles.diff397 bytesmicheas
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

fultonchain’s picture

Using Firebug I noticed that the paragraph styles were inherited from the reset stylesheet.

Adding p {margin: x x x x;} to styles.css resolved this for me. This also applies to strong, em, and such. The reset.css is a little overzealous and requires that these styles be added back in.

mimiproductions’s picture

Having trouble figuring out where to put this in styles.css to make paragraphs work. Stuck in under * page content* still does not work.

UPDATE!

Never mind, stuck it close to the top in *Main Styles* and it works like a charm. THANKS!!

Thanks!

namwebs’s picture

hi,

The reset.css is a little overzealous and requires that these styles be added back in.

... how exactly? Surely it is not necessary to define all these e.g. strong in styles.css?

fultonchain - could you post the required code for styles.css?

THANKS

micheas’s picture

Status: Active » Patch (to be ported)
FileSize
397 bytes

I just helped someone on IRC dealing with issues with your theme.

I have attached a patch to style.css that gives paragraphs a half em padding on the bottom, makes strong tags bold and em tags italicized.

I suspect that this is what most people would expect as the default behavior.

I am pretty sure that the patch matches drupal style guides for css.

Let me know if you want the patch in a different form.

Micheas

micheas’s picture

Status: Patch (to be ported) » Needs review

Just changed the status from patch needs ported to needs review, as the patch should apply cleanly.

namwebs’s picture

Thanks, micheas

madar’s picture

Thanks for the patch.
There is a typo problem, ":" instead ";" in strong block.

micheas’s picture

FileSize
396 bytes

Thanks for pointing this out madar.

A fixed patch is attached.