thanks for a great module.
BG doesnt add any classes etc to allow themeing, nor is there any theme function or anything that seems available for modifying the output. it would be nice if #370294: Add CSS Classes to allow styling was addressed at least (at last).
main issue for me was that the fixed width kills responsive design.
for those who may want this doable, i had to break the rules and hack gallery_showtime.inc, uncomment line 390 (and comment out 391) to get the .brilliant_gallery class on the BG <ul>, then add to my css ul.brilliant_gallery {max-width:100% !important;}. note this makes column count override work fine until the screen is less than the fixed width. tested with square images but should work otherwise.
would be great if this were an option; responsive is popular these days.

Comments

crosshairs’s picture

Issue summary: View changes

I agree, it would be nice to add css class to make it easier to style the gallery.

With my column count set to 0, I managed to make the gallery responsive easily in css without hacking the module like this:

Add a class to the <div> containing the gallery [bg|path/to/images] tag in your page:

HTML:

<div class="bg-gallery">
<p>[bg|path/to/images]</p>
</div>

When the tag is rendered, it creates a <ul> to display the gallery thumbnails, so you can target the <ul> like this in your css:

CSS:
.bg-gallery ul {max-width:100%;}

I used lightbox2 to display the larger images, and this seems responsive by default.