Change background image

I’m tired and crotchety. I have a one-page site at www.federicobrownmanzone.com, using the offroad theme out of the box and a simple page with an image. All I want to do is
a) change the font of Federico Brown Manzone to arial, same size
and
b) not have all of that dreadful whitespace around the image.

But I have failed in three hours to do this simple thing.

Help, please!!!

TIA

Richard

Add this CSS to the page or site wide CSS container:

.site-title {
    font-family: "Arial";
 }
 
 .site-content-inner {
    background: none;
}
2 Likes

Thank you!!!

One last thing to be perfect - how do I make the title Federico Brown Manzone come out in capital and small letters, and not just capitals?

you can add this CSS to above

.site-title {
    text-transform: none;
}

So the final would look like this:

.site-title {
    font-family: "Arial";
    text-transform: none;
 }
 
 .site-content-inner {
    background: none;
}
3 Likes

The internet is a wonderful place, not because of its technology but because of the people you meet there, and the way they help. Thank you, Teefers and Klaatu!

And if anyone wants to go and visit my son’s graduation film - the subject of the one page site - I hope they like it.

But in any case, thanks again!

3 Likes