Im trying to format my comments and node pages to show user pictures. How do i get the image formatted similar to groups.drupal.org? Where the picture is left aligned and the text wraps around the image. Is this even an override?

Comments

narres’s picture

You are able to justify your layout within your templates style.css, like:

img {
  float: left;    /* This is the left align / textfloating */
  margin: 0.0em 1.5em 0.5em 0.0em;
}

You have to specialize your css-tag (in this case img) according to your template.

Thomas Narres
Keep the sunny side up

jgavin’s picture

Thanks for your help,

The Node content is perfect all round now, with the image and spacing and text where i want it. BUT the comment content (submitted by text and comment text) is underneath the user picture. On the .tpl pages both look identical, is there something in the CSS that would be the case? I have played around with the CSS with no luck.