Site logo

[Resolved] Blog and in the entries to full width

Home Forums Support [Resolved] Blog and in the entries to full width

Home Forums Support Blog and in the entries to full width

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #327110
    Miguel Angel

    Hello Tom, I want to leave in the blog and in the entries to full width this text and with this color, after the logo

    See images

    Can you help me please.

    a greeting

    #327200
    Leo
    Staff
    Customer Support

    Hi there,

    You can use the after header hook:
    http://demo.generatepress.com/hook-locations/
    https://docs.generatepress.com/article/hooks-overview/

    With conditional tag like this and check execute PHP

    <?php if ( is_single() || is_home() ) : ?>
         <div class="header_banner">
            Your stuff in here
        </div>
    <?php endif; ?> 

    Then style it with some CSS:

    .header_banner {
        background-color: #000000;
        color: #ffffff;
        font-size: 20px;
        text-align: center;
    }
    #327235
    Miguel Angel

    Thank you very much Leo
    Perfect

    #327240
    Leo
    Staff
    Customer Support

    Glad I could help!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.