• Resolved vinn95

    (@vinn95)


    I’m trying to change the size of the image published in the next page ie. the page linked when the thumbnail image is clicked.
    I suppose below class controls the display.
    .wp-caption img,
    .wp-caption img[class*=”wp-image-“] {
    But when I did the changes in my child theme, I couldn’t find any changes. The current image size is 300×276.
    I know I’m wrong in my approach, May I expect experts’ advice on the above.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Konstantin Kovshenin

    (@kovshenin)

    Can you provide a URL with an example?

    Thread Starter vinn95

    (@vinn95)

    Hi Konstantin,
    Thanks for your response.

    1.I would like to increase the image size in the below link
    https://vinns.in/?p=264

    2. In the homepage, I’m trying to move the position of the entry summary away from the image in the last set of images, after the featured secondary content images.

    Your advise Please.

    Theme Author Konstantin Kovshenin

    (@kovshenin)

    It looks like you’ve inserted that image and explicitly provided a size of 300 pixels. Can you try and edit the post, insert the image again and make sure you pick full size or large?

    For 2, since you changed the image sizes, you’ll have to change the left margin for the content blocks. Here’s the CSS that provides the current margin, you can try increasing that, to say 360:

    .blog .site-content .has-post-thumbnail .entry-header, .archive .site-content .has-post-thumbnail .entry-header, .search .site-content .has-post-thumbnail .entry-header, .blog .site-content .has-post-thumbnail .entry-summary, .archive .site-content .has-post-thumbnail .entry-summary, .search .site-content .has-post-thumbnail .entry-summary, .blog .site-content .has-post-thumbnail .entry-meta, .archive .site-content .has-post-thumbnail .entry-meta, .search .site-content .has-post-thumbnail .entry-meta {
        margin-left: 360px;
    }

    Hope that helps!

    Thread Starter vinn95

    (@vinn95)

    Thanks a lot Konstantin.
    Both worked..

    Thread Starter vinn95

    (@vinn95)

    Hi,
    This is again about the image size discussed in point # 1
    Can I change the image size according to my preference ie 650×450, Am I allowed to do so? Or its a standard size?
    Please enlighten me.
    Thanks in advance.

    Theme Author Konstantin Kovshenin

    (@kovshenin)

    Expound sets that size, but you can redefine that in a child theme with add_image_size and set_post_thumbnail_size. Hope that helps!

    Thread Starter vinn95

    (@vinn95)

    Thanks Konstantin for your prompt reply ?? Will follow your advice.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Size of Image in Page’ is closed to new replies.