mikeschafer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Firefox moves headerSolved.
Forum: Themes and Templates
In reply to: [Customizr] Center HeaderBrilliant! Thank you very much! Sorry for my confusion!
Forum: Themes and Templates
In reply to: [Customizr] Center HeaderI changed the percentage from 95% to 62% though it doesn’t quite center it. Some browsers put the menu on 2 lines with that setting.
.navbar-wrapper.clearfix{
clear: both;
width: 62%;
margin: 0 auto;Is there a better way?
Forum: Themes and Templates
In reply to: [Customizr] Center HeaderThat was so helpful. Thank you!
In doing that, the nav bar has jumped to the left even though the css says:.navbar .nav {
float: center;
}What do I need to change to center it?
Forum: Themes and Templates
In reply to: [Customizr] Center HeaderI have tried every part of that snippet to no avail. Could you indicate which part I should focus on. Thanking you.
Forum: Themes and Templates
In reply to: [Customizr] Background to go behind MenuThanks ElectricFeet but as you can see from my site, it is still not transparent.
Forum: Themes and Templates
In reply to: [Customizr] Background to go behind MenuThank you subcan. Your suggestion:
footer#footer .colophon {
background-color: transparent;
background: transparent;
}is currently resulting in a big grey box. I really would like it to be transparent like the header. The best I have achieved is a white box, using:
footer#footer {
background: 0;
}Any ideas? Thanks, you’ve been terrific.
Forum: Themes and Templates
In reply to: [Customizr] Background to go behind MenuI have managed to sort it out, thank you, using:
.tc-header {
background: transparent;
}
footer#footer .colophon {
background-color: 0;
}
/* to add a transition to footer */
footer#footer {
border-top: 0;
}Forum: Themes and Templates
In reply to: [Customizr] Background to go behind MenuThank you so much! The header is perfect but the footer is now a dark grey instead of white. Really grateful.