Hertz Pro Image dimensions

The theme does not rezise images properly. I can compensate for this by using image styles through drupal, but it does not carry over to responsive mode.

How can I change the theme to keep aspect ratios on images? Otherwise theme is excellent.

Thank you.

Comments

user
Submitted by admin on Sun, 08/30/2015 - 01:38

Images should resize and maintain original dimension ration.
Please check a demo page with image.
http://demo.drupar.com/hertzpro/blog/proin-rhoncus-consequat-nisl

Resize the browser windows and check image.

user
Submitted by souldoubt on Sun, 08/30/2015 - 16:18

The images do resize width after changing the browser window, but not the height. Images are attachments to nodes in this case and do not retain aspect ration in node view or views.

This is a fresh install of Drupal 7.39. Are there any requirements for modules or libraries that are missing?

user
Submitted by souldoubt on Sun, 08/30/2015 - 16:55

This can be defeated by placing the images within a text area. I noticed that blog posts with images in the text worked correctly but not attached images to nodes.

Perhaps a suggested change for the future?

user
Submitted by admin on Tue, 09/01/2015 - 04:04

Thank you for bringing the issue. Please follow below steps:

  1. open css/reset.css in any text editor.
  2. Find Following code:
    img, video {
    max-width: 100%;
    border: 0 none;
    }
  3. Change above code to:
    img, video {
    max-width: 100%;
    height: auto;
    border: 0 none;
    }
  4. Save the file.

Done!!