Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Let me know if you have another WordPress theme!
OK one more small puzzle…
how do I remove the horizontal rules on the top and bottom – and remove the vertical space the consume as well?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Add this outside of the Media Query:
#header,
#footer {
border: none;
padding: 0;
}
#site-logo {
top: 0;
}
Inside the Media Query change this:
.mobile-button {
margin-top: 40px;
}
#main-nav.active {
margin-top: 74px;
}
To this:
.mobile-button {
margin-top: 10px;
}
#main-nav.active {
margin-top: 44px;
}
Sorry, what file are you referring to regarding these edits?
I don’t know where the Media Query is.
I see the media-queries.css file now…
but where do the other bits go? –> style.css?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
When I say Media Query I’m referring to this line:
@media screen and (max-width: 760px)
And everything that is contained within it, e.g.:
@media screen and (max-width: 760px) {
This stuff
}