Closed (won't fix)
Project:
Image
Version:
6.x-1.x-dev
Component:
image_gallery
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
5 Sep 2006 at 20:18 UTC
Updated:
26 Jun 2009 at 11:17 UTC
How can i get my images show from left to right instead of 1 per line. I would like to have something like the siriux theme for G2. I already did the image blocks style i just dont know how to get them to show next to one another.
Can someone help me
Comments
Comment #1
piotrdesign commentednevermind i solved my problem.
Comment #2
piotrdesign commentednevermind i solved my problem.
Comment #3
abramo commented.
sorry, I could not resist the following comment:
- this guy "piotrdesign" comes in this community, requesting a solution to his problem - he wants to take something out of the community - nothing wrong up to this point.
- luckily for him, he resolved the problem on his own, so consequently he does not need the community any more on the issue in question.
- HOWEVER, HE DOES NOT BOTHER TO SPEND A FEW MINUTES TO EXPLAIN HERE, FOR THE SAKE OF OTHER MEMBERS OF THIS COMMUNITY, WHAT IS THE SOLUTION TO THE PROBLEM. HE IS NOT PREPARED TO SPEND EVEN A FEW MINUTES TO "GIVE BACK" TO THE COMMUNITY THAT HAS MADE DRUPAL AVAILABLE TO HIM FOR FREE.
- I wish there was some kind of "filter" blocking such individuals out of volunteer communities . . . . .
Comment #4
unocnu commentedDoes anyone know how to do this? I would like to have 2-3 images per line.
Thanks?
Comment #5
AaronCollier commentedCan you explain more about what exact settings you are using and where you want this to appear? Are you using Views? I already get my images to appear more than 3 in a line in a gallery. At least the thumbnails
If you use something like css and
display: inline, would that work?Comment #6
sunIssue won't fix according to the original poster.
Comment #7
david@thrale.com commentedI have found a workaround that allows multiple images from image nodes to be displayed on one line. The trick is to find the URL for all the images or thumbnails you want in a line, and then post these in the target node using the
tag, as follows:
<CENTER></a><a href="http://www.disney.com/"><img src="system/files/images/disney.png" alt="Disney" /></a><a href="http://www.art.com/"><img src="/system/files/images/art.png" alt="art" /></a><a href="http://www.sport.com/"><img src="system/files/images/sport.png" width="150" alt="sport" /></CENTER>Note: you must change the input format to full HTML (care needed) and my use of the tag is optional.
I am now on D6. But when I used image module in D5 I was able to get multiple images from image nodes to be displayed on one line using image assist, but this only seemed to work if
align=nonewas used. In D6 I can't get this trick to work.Comment #8
AaronCollier commentedI think it might be a problem that you're using an HTML tag that has been depreciated for a while now (since HTML 4.01). I think better design principles would call for using proper HTML and probably CSS.