[Support request] Rightside Bar Images in Center

Home Forums Support [Support request] Rightside Bar Images in Center

Home Forums Support Rightside Bar Images in Center

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1637724
    Dev

    Hello,

    I used the below CSS to make the sidebar images in the center. But that’s NOT working.


    @media
    (min-width: 769px) {
    .post-image-aligned-left .post-image img {
    max-width: 405px;
    }
    }

    https://prnt.sc/xsliot

    #1637892
    David
    Staff
    Customer Support

    Hi there,

    use this CSS to force the image to fill the available space:

    .sidebar .widget_media_image img {
      width: 100%;
    }

    OR you can use this CSS to center the image:

    .sidebar .widget_media_image  {
      text-align: center;
    }
    #1637926
    Dev

    Thanks.

    #1637967
    David
    Staff
    Customer Support

    You’re welcome

    #1648243
    Dev

    Hello,

    I was using the below CSS to keep the things in the center. But I don’t know why it has stopped working. I tried other CSS mention on this page, but none of them are working.

    .sidebar .widget_media_image {
    text-align: center;
    }

    #1648317
    David
    Staff
    Customer Support
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.