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 #3020903
disable left and right blank space on screen
Closed

Comments

  • leoyipenvato started the conversation

    In tablet and mobile screen, there's white blank vertical spaces in most right and most left. How to disable them?

  •  2,490
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

      @media only screen and (min-width: 961px) and (max-width: 1169px) {
          .container {
              width: 100%;
              padding-left: 20px;
              padding-right: 20px;
          }
      }

    Regards,
    PenciDesign.



  • leoyipenvato replied

    nothing changed.

  •  2,490
    PenciDesign replied

    Hi,

    Please send me a screenshot of your request, I'll check again and then send you a custom CSS code.

    Regards,
    PenciDesign.


  • leoyipenvato replied

    full width is wanted on tablet and mobile screen, padding will be added to some blocks by myself.

    I would like to know how to delete the red areas shown in photo, thank you.

  •  2,490
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    @media only screen and (max-width:767px) {
        .wp-block-columns .paddingup {
            padding: 0 10px !important;
        }
    }

    Regards,
    PenciDesign.



  • leoyipenvato replied

    Thank you for your effort. But still nothing changed.

    I found the following code helped.

    @media (max-width: 960px)
    {.wrapper-boxed > .container,
    .penci-page-header-wrap
    {padding: 0;}}

  •  2,490
    PenciDesign replied

    Hi,

    Look great now. Do you've any other questions?

    Regards,
    PenciDesign.


  • leoyipenvato replied

    Thank you for your effort, you may close the conversation.