Full width header and no border from top
-
Hello, I’m trying to make my header full width and no padding on top. My site is located at https://collectivelychristine.com
I’m using a child theme and I’m trying to edit that.
My style CSS for the header is:
/* # Site Header
—————————————————————————————————- */.site-header {
border-top: 5px solid #c5d8de;
min-height: 150px;
}.site-header .wrap {
padding: 15px 0;and my functions.php is:
//* Add support for custom header
add_theme_support( ‘custom-header’, array(
‘width’ => 900,
‘height’ => 420,
‘header-selector’ => ‘.site-title a’,
‘header-text’ => false,
) );That all I see for custom header. I’m going to make my logo different and I want the top of the logo to be flush with the top of the page.
Thanks
- The topic ‘Full width header and no border from top’ is closed to new replies.