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

piotrdesign’s picture

nevermind i solved my problem.

piotrdesign’s picture

Status: Active » Closed (fixed)

nevermind i solved my problem.

abramo’s picture

.

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 . . . . .

unocnu’s picture

Does anyone know how to do this? I would like to have 2-3 images per line.
Thanks?

AaronCollier’s picture

Status: Closed (fixed) » Postponed (maintainer needs more info)

Can 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?

sun’s picture

Status: Postponed (maintainer needs more info) » Closed (won't fix)

Issue won't fix according to the original poster.

david@thrale.com’s picture

I 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=none was used. In D6 I can't get this trick to work.

AaronCollier’s picture

I 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.