Image instead of text for the title of a write.as blog

Re: https://sfss.space

I’d like to change the text title (“SFSS”) by an image. A logo, kinda like the one you can find on @cjeller1592 blog: https://blog.cjeller.site, for example.

I inspected the code but I didn’t find how to replicate it.

Anybody here has an idea?

Hi @sfss! This is originally from @carbontwelve’s theme that you can find on the themes blog . Here’s the code from my blog:

#blog-title a {
    color: #fff;
    background-color: #2988bc;
    padding: 0.5em;
    display: inline-block;
}

/* This is optional for hovering over the title */

#blog-title a:hover { 
    color: #eee;
    background-color: #2988bc;
}

1 Like

Thank you @cjeller1592!