HI,
I would like to know how I can reduce/remove the excess space above the logo on my child theme?
website: http://www.millcitymoose.org
HI,
I would like to know how I can reduce/remove the excess space above the logo on my child theme?
website: http://www.millcitymoose.org
please use http://www.getfirebug.com or chrome's developer tools. 80-90% of css questions on here can be solved in seconds with these tools.
in your case there is padding on the #branding div that is being inherited from the default.css stylesheet
#branding {
padding: 88px 0 44px 0;
}
i usually copy the default.css into my style.css instead of importing it b/c i usually make a lot of changes. but if you choose not to you can still add #branding to your style.css and it will override the value from default.css
This topic has been closed to new replies.