Also how do you change the header to black?
Hello,
I’m assuming this issue is resolved since your site is up and running?
Thanks!
yes i fixed it by myself!
Also please look into the following pages, Our History and Donation
1. the images are cut off
2. i need to change the colour of those headings!
Hi @mikkiweb7,
The image is being being cropped because the image is in portrait format, and there is a maximum height set on banner images.
You could resolve this a couple different ways. First, I would recommend centering the background position by adding the following style:
.feature-img.page-banner {
background-position: center center;
}
That will center the image. However, it will still be cropped since you are using a portrait format image. Additionally, you could add the following style:
.feature-img.page-banner {
background-size: contain;
}
Either or both of those styles may give you the look you’re after. I hope this helps. Thanks!
Regarding the color of banner image headings, they can be changed like so:
.headline.img-headline {
color: #ff0000;
}
Thanks!
sorry where would i put this under now? its under the editor in what folder?
Hi @mikkiweb7,
I would recommend adding the code under Appearance > Customize > Additional CSS.
Thanks!
Thank you so much it worked!
No problem, glad we could help.