By crowninternet on
I am using the image module and for the life ofme cannot figure a way to make the thumbnails align to the left:
http://crown-internet.com/drupal/
It would be great for the thumbnails to align to the left instead of to the top of the content.
Any ideas would be greatly appreciated.
Thanks,
John.
Comments
Modify CSS
Hello,
You could start by writing some CSS rules to select the image thumbnails and float them to the left.
something like:
.thumbnail {
float: left;
padding: 0px 10px 0px;
}
Hope this helps!
- Gustavo
It Worked
That worked perfectly!
Thanks!
jm