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
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.
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
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
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.
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
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.