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 #3369843
Page title below featured image?
Closed

Comments

  • eamel started the conversation

    Hi there! First of all; thanks for this theme, it's marvelous.

    Second; my 'problem'. Like the subject says, I would like to have the PAGE-title below the featured image, instead of what it is now (above the featured image).

    I can't find the setting for that in the customizer so the obvious question is; how?

    Do I edit the (child) functions.php or add something to the custom CSS?

    Thanks in advance for your reply!

    Greetz, eamel

    Attached files:  page-title-below-featured-image.jpg

  •  2,280
    PenciDesign replied

    Hi,

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

    article.page {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    article.page > * {
        order: 2;
    }
    article.page > .post-image{
        order: 1;
    }

    Regards,
    PenciDesign.



  • eamel replied

    Thanks for the effort! It worked, although I've decided not to use it like that. It appears not to be as nice as I ithopught it would be; there's a heading image AND a featured image. That's a bit too much, I think ;-)

    Thanks again, though.