More tweaks — looking for help
I planned to be productive today but woke up feeling poorly. I've been struggling with a minor cold for a week and a half; going back to work set me back a little bit.
Instead of doing housework, I spent hours writing today. I also spent some time tweaking the CSS of my writing and art pages.
I also edited some of my blog pages. Poke around and see if you can spot the differences, lol.
I keep saying it, but I think my blog is finally coming together the way I want. I have noticed a small issue though. I set my headers to be centered because I like how it looks. But if you go to the direct post link, the date information underneath the title is justified left. It's a small thing, but it's driving me crazy.
I looked at the HTML but I'm unable to isolate the <i>
or <time>
tags on posts themselves, not just universally across the blog (I tried setting .time
to display:none
then dates disappeared across the board, lol).
ETA: Sylvia emailed me with a fix that did the trick! Here's the code:
.post p:has(> i time) {
text-align: center;
}
Thanks Sylvia! <3