Photo display on Hemingway Rewritten

  • Unknown's avatar

    How can I make the proportionate size of photos relative to the text look the same on all devices (iPhone, iPad & desktops) in Hemingway Rewritten?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, first off, we are not allowed to hide or edit the WordPress.com and theme footer credits per our Terms of Service (#1 Attribution). See the Frequently Asked Questions on the Custom Design support page for more information.

    You are allowed to restyle the footer credits to better fit with your design as long as they remain readable, and you are also allowed to add text to the footer, such as a copyright statement. Please remove the following from your custom CSS.

    .site-info a, .site-info .sep {
        color: rgba(0, 0, 0, 0);
    }

    Or, you can replace it with this, which changes the color of the footer credits so they are not as noticeable.

    .site-info a, .site-info .sep {
        color: #555;
    }

    On the images in the content, if we maintain proportions, the images on phones are going to be very tiny. You can try this and see what you think.

    .entry-content img[class*="wp-image"] {
        max-width: 60%;
    }

    Generally the images are taken full width on smaller screens so that they are visible to visitors.

    The above code will affect all images that are put into pages and posts, so if you, at some point, want to put a larger image into a post or page, it is going to be downsized to 60% of the available content width. It would not be full width of the content area.

    Please let me know if I have misunderstood.

  • Unknown's avatar

    Thanks v much for your quick and substantive reply! I didn’t know I was violating the terms of service and will fix that. Appreciate you taking the time to send suggestions.

  • Unknown's avatar

    No problem, and you are welcome. If you have further questions, please let me know.

  • The topic ‘Photo display on Hemingway Rewritten’ is closed to new replies.