to align you logo together with your nav try this css
#header-left-section {
margin-top: 5px;
}
#header-logo-image img {
margin: 8px;
}
Thanks, that has lined them up.
How can I get the menu sitting below the logo image?
I have the two centrred now with the CSS below:
#header-left-section {
background-color: #FFFFFF;
float: inherit;/* NEW WORK HERE --- was left ---*/
margin-right: 0;
margin-top: 0px; /* was 5px */
}
.footer-widgets-wrapper {
background-color: rgba(104, 104, 53, 0.9);
border-top: 1px solid #ccc999;
}
#header-logo-image {
margin: 8px;/*was 8px*/
float: none;
margin-left: 40%;
margin-right: 0%;
}
How can I get rid of the line between them, so that header-left-section and header-logo-image form one block on the page?
Hi this is the CSS to combine the header area in the same color.
#header-text-nav-container {
border-bottom: none;
margin-bottom: 0px;
background-color: #FFFFFF;
}
Thanks for the help sheldz!