Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Can you show us your site
Hi Andrew,
Thanks for the response. Here it is…
http://www.ptmurphy.com
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you’re not using a Child Theme, and if the theme doesn’t have a section for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://ww.wp.xz.cn/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications:
-
(put this code in)
.site-title {
top: 0;
left: 0;
width: 100%;
max-width: none;
clip: auto;
text-indent: -999em;
}
.site-title a {
height: 100px;
}
@media screen and (min-width: 768px) {
.site-title a {
height: 310px;
}
}
- Save
Alternatively use your Child Theme style.css file to hold your CSS modifications
We’re up and running! I added it to my childs theme and it works great! Thanks for the great help and fast response, Andrew! I really appreciate it!
Oh, i just noticed something Andrew. For some reason now I have a couple of grey bars above and below the header that I’d like to get rid of. Any ideas here?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Replace the above code with this:
.site-title {
top: 0;
left: 0;
width: 100%;
max-width: none;
clip: auto;
text-indent: -999em;
}
.site-title a {
border: 0;
height: 100px;
}
@media screen and (min-width: 768px) {
.site-title a {
height: 310px;
}
}
Fyi I would have revisted this thread because I go back to threads that have replies.