Posts by robertfiszer

    Previously I used 900px wide images and then resized them to 450px – that resulted in bad quality image. Now I upload images that are 2000px wide and resizing to 450px looks acceptable.


    Anyway, the quality/sharpen attributes don't do anything to the images.

    Both libraries are installed and images are JPGs


    I managed to find a partial solution to my issue by uploading bigger images then converting them to 900px and 450px. It looks like the smaller images look much better, however, quality and sharpen attributes doesn't seem to do anything.

    Hi, my original images are 900px wide and I want them to be resized to 450px for mobiles (code below). The original size is around 250kb but after conversion I get 10kb pixelated images. I tried to add quality and sharpen but that doesn't do anything. Is there something I do wrong?



    Code
    1. <picture>
    2. <source media="(min-width: 1024px)" srcset="<perch:content id="image" type="image" label="Image" />">
    3. <img src="<perch:content id="image" type="image" width="450" />" alt="<perch:content type="text" id="caption1" label="Caption" title />">
    4. </picture>

    Hi, I have Runway installed and running but there is a problem with blog posts that appear a few hours after being created. The same happens to the edits. I hard reload my browser, checked that in other browsers and on my mobile phone with the same results. Any ideas?


    R

    Hi everyone, I'm building a page that contains around 30 content regions. I created 10 templates, each containing a grid of images arranged in a certain way and a text block underneath.


    I want the user to be able to choose a template for each region and move it up or down easily. Ideally, I'd like the user to be able to add new content regions as well.


    Is there any way to do that? I understand that it cannot be done with content regions. Perhaps there is another way of targeting the issue.


    Robert

    Hi guys,


    I have a repeating region on a page and I want to use the data from that region in another repeating region within JavaScript at the bottom of the page. How can I do that?


    This is my page:

    And this is my template:

    Code
    1. <div class="song amplitude-song-container amplitude-play-pause" data-amplitude-song-index="<perch:content id="perch_item_zero_index" type="hidden">">
    2. <div class="song-meta-data">
    3. <span class="song-title"><perch:content type="text" id="TuneTitle" label="Title" order="1" required ></span>
    4. <span class="song-artist"><perch:content type="text" id="TuneArtist" label="Artist" order="2" required></span>
    5. <span class="song-duration"><perch:content type="text" id="TuneTime" label="Time" order="3" required help="Enter time in format 0:00"></span>
    6. </div>
    7. </div>
    8. <span class="song-download">
    9. <a href="<perch:content id="file" type="file" label="File" order="4">" download></a>
    10. </span>


    Thanks,

    Robert