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 #2843483
Programmazione
Closed

Comments

  • viaggiocoldiablo started the conversation

    Ho un problema con la lettura degli articoli e, voglio che ci sia uno spazio tra destra e sinistra della schermata in modo da avere una lettura migliore, il tutto deve essere più centrato

  •  2,492
    PenciDesign replied

    Hi,

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

    @media only screen and (min-width: 768px) {
        body.single .penci-single-wrapper {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    Regards,
    PenciDesign.



  • viaggiocoldiablo replied

    Ho provato comNon è dritto, vorrei più spazio simmetrico tra la destra e la sinistrae mi avete detto ma è uscito storto

  •  2,492
    PenciDesign replied

    Hi,

    Please modify the CSS code:

    @media only screen and (min-width: 768px) {
        body.single .penci-single-wrapper {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }     body.single .penci-single-wrapper .container {
            max-width: 100%;
        }
    }

    Regards,
    PenciDesign.


  • viaggiocoldiablo replied

    Grazie mille! Mi chiedevo se si potesse fare la stessa cosa per la sezione "categorie" grazie

  •  2,492
    PenciDesign replied

    Hi,

    Please use the following custom CSS code for the category and other archive pages:

    @media only screen and (min-width: 768px) {
        body.archive .wrapper-boxed > .container {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    Regards,
    PenciDesign.


  • viaggiocoldiablo replied

    Grazie mille gentilissimo, sarebbe possibile farlo anche sulle pagine e su tutto il blog in generale?

  •  2,492
    PenciDesign replied

    Hi,

    Please use the CSS code below for all pages:

    @media only screen and (min-width: 768px) {
        body .wrapper-boxed > .container {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    Regards,
    PenciDesign.


  • viaggiocoldiablo replied

    Salve, sarebbe possibile farlo su questa singola pagina?https://viaggiocoldiablo.com/chi-sono/

  •  2,492
    PenciDesign replied

    Hi,

    The previous code I've to reply to you at this comment: https://pencidesign.ticksy.com/ticket/2843483/#comment-15056552 also work with the single post. Please try to copy and paste to Appearance → Customize → Custom CSS.

    Regards,
    PenciDesign.