Forum Replies Created
-
AuthorPosts
-
stanb
MemberHi dpalme,
I don't know if StudioPress monitors this forum. If you open a support ticket, they will reply to you. I had an issue with the Altitude Pro theme and they provided me with the CSS to fix the issue.Stan
stanb
MemberThe only other thing I can think of is to add "!important" to your height and margin-top properties as follows:
height: 100px !important; /* add this */
margin-top: 10px !important; /* add this */
Your height and margin-top property will depend on your logo size so you may want to play around with different values for these as well.
stanb
MemberI hate to ask the obvious but did you clear your browser cache after you made the style sheet edits? I only ask because this has gotten me more than a few times.
stanb
MemberAdd the lines marked /* add this */ to increase header height and center logo vertically (your margin-top may need to be different depending on the height of your logo).
.featured-section .site-header {
background-color: transparent;
height: 100px; /* add this */
}.featured-section .site-header > .wrap {
border-bottom: 1px solid #fff;
height: 100px; /* add this */
}
.header-image .title-area,
.header-image .site-header.dark .title-area {
padding: 0;
margin-top: 10px; /* add this */
} -
AuthorPosts