Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1388242
Enable image left/right padding for single post
Closed

Comments

  • nagiko started the conversation

    Hi,

    Is it possible that disable right/left paddings for the images in a single post? I'd like to display the post images in full-width for the screen for mobile devices.
    See attached capture.


    Thanks.

  •  2,699
    PenciDesign replied

    Hi,

    If you do that, all the content will fit your screen on mobile. You can't do that for images only.

    Please add more this code to Customize > Custom CSS to do that:

    @media only screen and (max-width: 479px){
    .wrapper-boxed > .container, #widget-area > .container, #footer-section > .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    }

    Best Regards,

    PenciDesign

  • nagiko replied

    Thanks.