Archived topic
Blog and in the entries to full width
3 replies · Started by Miguel Angel on June 1, 2017
Viewing posts 1–4 of 4
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
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;
}
Thank you very much Leo
Perfect
Glad I could help!
This archived topic is closed to new replies.