Catholics are my last resort...
I have searched all over for help on this CSS issue ( I assume is a css issue), it is not directly related to Catholic media but I have nowhere else to go.
I have a site: yardandattic.com, and the nodes have an imagefield (set to a max of 4). When viewing the node, the pictures are aligned vertically or stacked, I would like them to be horizontal or in-line. I have played with the style.css for the bluemarine Drupal theme but nothing affects the pictures. I am using lightbox on the images...any ideas? You can view a test page below...
You'll need to add the following rule:
.field-field-pictures-event .field-item {
width: 100px;
margin-right: 10px;
float: left;
}
Of course, adding the float might make other things funky. You might have to add an 'overflow: auto;' to the fieldset that contains those images.
Using Firebug or Chrome/Safari's Inspector can help you find the classes for the images, fieldsets, etc. that you need to manipulate using CSS.
No, you shouldn't alter the CSS files of the modules. Instead, add the CSS to your theme's style.css.
You could add it to the end of the style.css file in your theme, or you could even add your own 'custom.css' file either via a custom module, or in your theme's info file.
More help: http://tips.webdesign10.com/how-to-make-a-drupal-theme
Copywrite should be Copyright - unless you intended it that way. ;)
Nice! I'm glad you could get it working.
Looking good! Simple interface = major win. You might want to highlight the 'How to post a listing' and 'How to use EventMap' section a little more, maybe by making it have a yellow background, or a dark border...

Joao, welcome! I visited the link, but I saw no images. Did you get your issue resolved?