I used the code from KB and everything works as expected. I did want the transparent header though only on the home page. I added the .home .fl-page-content { to the css and it did make just the homepage header transparent. My problem is that for the other pages the header background is now white and it is supposed to be black. I have black selected in the customizer and if I completely remove the CSS the header is Black. Below is the complete code that I used
@media (min-width: 768px) {
.home .fl-page-content {
margin-top: -151px; /Adjust depending on the height of the header for medium devices/
}
.fl-page-header-primary {
position: relative;
z-index: 3;
background: none;
}
.fl-page .fl-page-header-primary .fl-page-header-wrap {
border-bottom: none;
}
.fl-page-header-primary .fl-page-nav-wrap {
background: none;
border-top: none;
border-bottom: none;
}
}
@media (min-width: 992px) {
.fl-page-content {
margin-top: -110px; /Adjust depending on the height of the header for large devices/
}
}
Thank You
Rick