• Hello, I have a question about updating the css for my theme (parker) this is my site address: https://beachbodybliss.com
    The issue is that my featured image on my posts is always left aligned. I want the center aligned. This is the code that is in my current css:

    .page-featured-img {
    position: relative;
    margin: 0px 1em 2.2em;
    height: 400px;

    Can anyone help me with how to change this?

    Second question, is there a way to ensure that the featured image gets selected when posts auto update on other social media (say Twitter or FB). For some reason it picks random photos, sometimes photos I haven’t even used in a current post.

    Many thanks in advance!

Viewing 1 replies (of 1 total)
  • Hello,

    Try the following css class:

    .parker-featured-img {
        margin-bottom: 0.5em;
        display: -webkit-flex;
        -webkit-align-items: center;
        display: flex;
        align-items: center;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Feature Image Questions’ is closed to new replies.