I just deleted a re-installed everything. But now my header image is small. I need it to be like 400px x 600px.
Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
I tried copy and pasting the original function.php from the spun.zip file but nothing.
Uh don’t do that. Don’t cry either. 😉 A link to your site doesn’t hurt either.
First thing: if you haven’t already done so create a child theme of Spun. Call that directory spun-child and put this simple style.css file there.
/*
Theme Name: Spun Child Theme
Author: Self-Help WordPress User
Template: spun
*/
@import url("../spun/style.css");
In your dashboard activate the Spun Child Theme. That will be the starting point for making any changes. That way if Spun gets updated then you will not lose your work.
Now what changes to the original functions.php file where you trying to make and what header? Did I mention a link could help? 😉
I reinstalled the spun.zip and have a new theme up.
link – kmpaperie.com/custom
the problem now is the header size.
How can I make the logo header bigger?
I have jetpack and have been using that for the other adjusments you’ll see on the theme.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Hello kmpaperie, in your Child Theme style.css file, add this;
#masthead img {
max-height: auto;
}
I put it on my jetpack css and it gave me a ! in a triangle and didn’t work.
It’s auto and not the actually pixel size?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Auto is the equivalent actual pixel size. You can use the pixel size if you want.
Is there anything else Jetpack is saying as a warning about it?
Can you post a link to a screenshot of this?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Sorry, it’s initial not auto. Try;
#masthead img {
max-height: initial;
}
no dice 🙁 kmpaperie.com/custom
it still has the ! triangle thing.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
But it is working in the website, right?
no 🙁 it still cuts off the logo – kmpaperie.com/custom
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
sure sure. One second.
and thank you for helping me with this. 🙂
okay uploaded. Its still cropping at 150x150px
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support