Quick question, which I hope was summed up adequately in the title, but I have a few blogs on W.a, in which I’ve replaced the default test title with a picture. I believe there’s another thread on here that goes more into detail, but it looks like this (https://anxiety.fun) and can be achieved by editing some CSS which looks like this:
#blog-title a {
background-image url(https://i.snap.as/xxxxxxx.ext);
background-position: center;
background-repeat: no-repeat;
color: rgba(0,0,0,0);
display: inline-block;
width: 200px;
height: 200px;
background-size: 200px 200px;
}
#post #blog-title a, #subpage #blog-title a {
/* Change size of logo on post and tags pages */
width: 100px;
height: 100 px;
background-size: 100px 100px;
You’ll wanna supplement that Snap.as URL with your own, or the address for whichever site you’re hosting the file on, after which, you can tinker with the pixel proportions. Anyways, I shared that mostly to give an idea of where I’m at thus far with this. On a newer blog of mine, I’d wanted to hopefully use a different picture from the one on the main page, for the individual post pages, on which the image is smaller and up in the top left hand corner. I don’t know whether this is possible, but I’ve been repeatedly surprised by the things I’ve assumed I couldn’t customize on here, but have come to learn is easily done with the appropriate snippet of code. Does anyone know of a way by which I might go about achieving this? Maybe @cjeller1592 might have a trick up his sleeve?
Cheers and thanks!