Reply To: How to have header bar on home page?


imaginem
Support

Hi,

Could you edit style.css and add the following to h2.entry-title at line 559

h2.entry-title {
    color: #474747;
    display: block;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0;
    margin: 0;
    padding: 20px 0;
    text-indent: 35px;
    width: 1020px;
    border-top:8px solid #000;
    background:#EEEEEE;
    text-transform: uppercase;
}

2. edit header.php

Replace line 23

echo wp_title(''); echo ' - ';

to

if ( ! is_front_page() ) {
	echo wp_title(''); echo ' - ';
}

Thanks