Closed (works as designed)
Project:
Gallery formatter
Version:
7.x-1.3
Component:
User interface
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Apr 2013 at 16:49 UTC
Updated:
17 Apr 2013 at 20:31 UTC
Hello all,
I face a strange problem :
- Gallery Formatter display is OK in teaser view (http://www.dance-with-me.org/photos)
- Dispay shows cropped image in page full view (http://www.dance-with-me.org/photos/remise-des-prix-du-concours-impact-l...), see PNG files attached
The teaser and default display settings are exacty the same in my content type.
Any idea
| Comment | File | Size | Author |
|---|---|---|---|
| gf-bug-2.png | 245.91 KB | misterpo | |
| gf-bug-1.png | 281.98 KB | misterpo |
Comments
Comment #1
kyletaylored commentedYou have an error in your CSS. In your teaser, everything works fine. On the full view, you have some responsive classes that are overriding the width of the image.
responsive-tablet-layout.css
.view-mode-full img {
border: medium none !important;
height: auto !important;
max-width: 453px;
}
responsive-mobile-landscape-layout.css
.view-mode-full img {
border: medium none !important;
height: auto !important;
max-width: 453px;
}
responsive-portrait-layout.css
.view-mode-full img {
border: medium none !important;
height: auto !important;
max-width: 300px;
}
If I disable these classes through Firebug, the images show up just fine.