Not sure what I'm doing wrong here, I'm trying to restrict the height of the images displayed. No matter what I change in this code, nothing seems to happen. Do I need to re-upload all my images for them to display differently on my site?
Here's my current code:
<cms:repeatable name='Project_Images' order='5'>
<cms:editable
name='proj_images'
label='Images'
type='image'
show_preview='0'
height='500'
desc='Height should be at least 500px'
/>
</cms:repeatable>
<cms:show_repeatable 'Project_Images'>
<img src="<cms:show proj_images />" alt="<cms:show k_page_title />" />
</cms:show_repeatable>
--
I originally had it set to crop the width:
<cms:editable
name='proj_images'
label='Images'
type='image'
show_preview='0'
width='750'
desc='Width should be at least 750px'
crop='1'
/>
Here's my current code:
<cms:repeatable name='Project_Images' order='5'>
<cms:editable
name='proj_images'
label='Images'
type='image'
show_preview='0'
height='500'
desc='Height should be at least 500px'
/>
</cms:repeatable>
<cms:show_repeatable 'Project_Images'>
<img src="<cms:show proj_images />" alt="<cms:show k_page_title />" />
</cms:show_repeatable>
--
I originally had it set to crop the width:
<cms:editable
name='proj_images'
label='Images'
type='image'
show_preview='0'
width='750'
desc='Width should be at least 750px'
crop='1'
/>