Congratulations by the module
Sorry for my english, I too speak spanish but understand in this place is necesary the comunication in english.
In a fluid theme like Garland the module works very well but on the theme that I use (not so fluid) has been necessary to modify the values of the CSS (paddings) to ensure that the fields are located in the correct position. The only problem I could not solve is with respect to the background, by default the gallery takes part of my theme background in this case are the bullets, I can not remove because it would affect my theme.
Could you please provide me a solution.
Thanks

CommentFileSizeAuthor
#6 savealife.jpg17.08 KBmanoloka
viñetas en galería.png158.21 KBogreatty

Comments

fleshgrinder’s picture

Hi ogreatty!

Fixing this issue is very simple. Add the following at the bottom of your CSS file.

.galleryformatter li {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

Of course you can tweak the CSS even more to fit your needs.

Regards Richard

manuel garcia’s picture

Title: Problem with the background » Prevent themes from displaying bullet icons on LI elements
Category: support » feature
Status: Active » Fixed

I've committed this (#400356) in an effort to prevent theme's from taking over the gallery's css. Mind you this is due to poorly (too greety) constructed CSS declarations in the theme, at least in my opinion.

Thanks Fleshgridner for your help.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

manoloka’s picture

Status: Closed (fixed) » Active

#1 didn't worked for me

I'm using the Giordani theme.

Any ideas why? or what could I do to sort it?

panigrc’s picture

To override inheritance from the theme simple do this:

.galleryformatter.galleryview.galleryformatter-view-full.galleryformatter-greenarrows.gallery-processed li {
  list-style: none;
  background: none;
}
manoloka’s picture

StatusFileSize
new17.08 KB

Thanks panigrc ... but that didn't worked out :(

However I manage using this

 #primary .singlepage .node .content .galleryformatter ul li {
list-style:none;
background: none;
}

One more question.

I have a hover effect (background color) on all links within the site.

That makes that green background (see pic) to show up when hovering over the thumbs.

Any idea how could I stop that from happening?

I tried this but didn't work.

#primary .links .galleryformatter ul li a:hover img{
background:none;
}

Thanks

manuel garcia’s picture

Status: Active » Closed (works as designed)

I realy cant be much more specific than what we're doing with our CSS here. Perhaps file a bug report for the theme since I think they are being probably over specific with their declarations.