Closed (fixed)
Project:
Corked Screwer
Version:
7.x-1.0
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Reporter:
Created:
29 Jan 2013 at 20:01 UTC
Updated:
24 Mar 2013 at 14:20 UTC
Hi there,
I added an image in the main-content area and the image was quite badly distorted. Further investigation revealed the following in the style.css file:
#main-content .node img {
float: left;
width: 48%;
height: 235px;
padding: 5px;
background: #ffffff;
margin:0 30px 24px 0;
border: 1px solid #DDD;
-webkit-transition: 0.3s all;
-moz-transition: 0.3s all;
-ms-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
}
You can see from above that img width is being set to 48% and img height is being set to 235px.
I was just wondering why that is being done as it distorts the image display.
Many thanks.
Comments
Comment #1
skech commentedHi jussiep, good point..
You can do the following changes into the corkedscrewer/css/style.css file and your images will be resized and not distorted
line 822 style.css
line 1569 style.css
Thanks
Soukri
Comment #2
cindyr commentedFYI, adding width: 100% caused it to continue to remain the original size of the image, even though the content type display setting had been changed to display the thumbnail. Removing the width: 100% and height: auto elements fixed it for me.
Comment #3
gtsopour commentedHello skechagia,
just remove the custom width/height definitions and keep only the max-width. In this way, every user will have the option to apply the desired image style through Drupal's User Interface.
Thanks
George
Comment #4
skech commentedFixed in 7.x-1.x
http://drupalcode.org/project/corkedscrewer.git/commit/60e295c
Thanks
Soukri