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 #4527936
Sharing box under Page Header
Open

Comments

  •  12
    LillaGreen started the conversation

    Hi there, how can I moove the share box under the Page Header? right now it is after the content. In customized the mai settings are: display share box before content. I enabled the Page Header for some pages, but cannot moove the share box - it is always after the content, althou the mains ettings are diiferent. Thank you in advance

  •  3,036
    PenciDesign replied

    Hi,

    Unfortunately, the current version of Soledad does not support changing the share box position on pages. It always appears after the main content. We will consider adding this option in a future theme update.

    Regards,
    PenciDesign.

  •  12
    LillaGreen replied

    ok, I understand there is no setting for that, but how how can I do it with a css? Shortcode? So that the share box is right under the header. Thank you in advance 

  •  3,036
    PenciDesign replied

    Hi,

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

    body.page-template-default article.page {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
    }
    body.page-template-default article.page > div {
      order: 3;
    }
    body.page-template-default article.page > div.penci-page-header {
      order: 1;
    }
    body.page-template-default article.page > div.tags-share-box {
      order: 2;
      margin-bottom: 30px;
    }
    

    Regards,
    PenciDesign.