• Hello,

    Would you please be able to direct me how to align images on my homepage with the text in Luminance. I have had no issue before and I have not changed anything, now the little images do not align with the text on the homepage and completely ruins the aesthetic. Thank you for your help.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey there,

    I checked out the site https://kwisdom.online and see what you reference where the featured image icons are out of alignment with the rest of the row.

    It looks like the block setting might have been modified as I see that the .wp-block-post-featured-image img?class being used on those featured images in your homepage have the following CSS:

    .wp-block-post-featured-image img?{
    vertical-align: bottom;
    }

    This seems to be overriding the default CSS styles from your theme, which sets the vertical-align to the top value.

    :root :where(.wp-block-post-featured-image.wp-block-post-featured-image img) {
    vertical-align: top;
    width: auto;
    }

    So, I recommend using the “Reset Styles” feature to reset any custom styles that might have been applied onto your image blocks or other ones that could be contributing to the issue.

    Documentation for reference: https://wordpress.com/support/using-styles/#reset-all-styles

    Otherwise, you could also consider adding Additional CSS to remedy this instead of resetting styles. The code would like a little something like this:

    .wp-block-post-featured-image img?{
    vertical-align: top !important;
    }

    If you’re interested in going that route, you may need to upgrade your plan to access that feature. You can see a feature comparison of our different plans here: https://wordpress.com/pricing/

    I hope this helps. Let us know if you have further questions or concerns! ??

    Thread Starter k1wisdom

    (@k1wisdom)

    Hello, thank you for your response. Unfortunately, it seem like resetting styles does not work – this is another example of when I also found different solution suggestions and they just simply did not work or did not exist. I am not able to upgrade my plan as I do not make any money currently and I have this little site just so I can put my writings out there. Is there any other way to get the homepage back to normal? Would you please be able to help?

    Thank you

    • This reply was modified 7 months, 2 weeks ago by k1wisdom. Reason: I wanted to attaxh a screenshot to show you that I have found the "reset style" option, but there was no option to attach an image only to link

    Hey there, thanks for your patience!

    This is a known bug that our developers are aware of. We can’t provide an ETA for the fix, but there does seem to be some recent progress.

    Outside of this, we can only recommend switching to a different theme until this update is ready, or even better update to the premium package to implement this fix.

    Hope this helps!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Thumbnail images no longer align with text on homepage’ is closed to new replies.