[Resolved] Need Centering Image in The Mobile Sidebar

Home Forums Support [Resolved] Need Centering Image in The Mobile Sidebar

Home Forums Support Need Centering Image in The Mobile Sidebar

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #457556
    Ridwan

    Hey Guys,

    I need to custom an image in right sidebar. This image look perfectly in desktop, but when I switch to mobile, it’s not centering. Here the screenshot (https://imgur.com/lCQ9qjX).

    I already try this method (https://docs.generatepress.com/article/centering-logo-mobile-header/), but it’s not working at sidebar.

    #media_image-3 {
     left: calc( 50% - 90px); /* 50% from the left - half your image width */
     background: transparent !important;
     padding: 0;
    }

    I want the image at right sidebar centering when I browsing at mobile phone, just like this (https://imgur.com/n0I4myr).

    Thank you. πŸ™‚

    #457945
    Leo
    Staff
    Customer Support

    Hi there,

    Try this CSS:

    @media (max-width: 768px) {
        #media_image-3 {
            text-align: center;
        }
    }
    #457963
    Ridwan

    Cool, it works.

    Thanks Leo… πŸ˜€

    #457980
    Leo
    Staff
    Customer Support

    No problem πŸ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.