Re: Meta thread

(Anonymous) 2018-08-28 04:18 pm (UTC)(link)
OK, apparently in order for spoiler cuts to properly despoil, you need to paste a bit of CSS into the custom journal code. It seems pretty straightforward here:

https://rahirah.livejournal.com/703373.html

But if mods don't want to deal with the tech I'm definitely down to be modded for like 30 minutes to finagle the CSS and then be instantly unmodded.

Re: Meta thread

(Anonymous) 2018-08-28 05:04 pm (UTC)(link)
DA would definitely appreciate spoiler cuts working, if possible. I'm doing the Simoun rewatch and would like to conceal spoilery observations alongside general impressions as we go along!
tentacletart: tentacles from above (Default)

Re: Meta thread

[personal profile] tentacletart 2018-08-28 06:57 pm (UTC)(link)
(Pardon this mod's deplorable css skills, but if I have the custom CSS enabled and spoiler cuts are still not working, then it is the custom's layout fault, right?)

Re: Meta thread

(Anonymous) 2018-08-29 02:37 am (UTC)(link)
this isn't a custom layout, it's the dw site skin and you can't customize css for that

Re: Meta thread

(Anonymous) 2018-08-29 08:44 am (UTC)(link)
Maybe you need to enable it again? I switched my journal to Adjustable Gradient for Bannering like meme-of-bilitis has and that cleared my custom CSS. It started working after I copied and pasted it again.

If not, I found this code in the comments:

https://rahirah.dreamwidth.org/689049.html?thread=19483801#cmt19483801

which is purported to work on any journal.
tardigradetreasurer: (Default)

Re: Meta thread

[personal profile] tardigradetreasurer 2018-08-30 12:21 am (UTC)(link)
Custom CSS is now enabled, so spoiler cuts should be working.

(Edit) The comment headers don't look great, but I figured it would be better than nothing. If anyone knows how to make them look like FFA's then please let us know.
Edited 2018-08-30 00:41 (UTC)

Re: Meta thread

(Anonymous) 2018-08-30 01:10 am (UTC)(link)
It’s currently hard to read on mobile flat view. The text is too big and wraps weirdly, and the posts are very spaced out.
tardigradetreasurer: (Default)

Re: Meta thread

[personal profile] tardigradetreasurer 2018-08-30 01:13 am (UTC)(link)
*checks*

I see your point about the spacing, but I don't see any weird wrapping. Could you share a screenshot?

Re: Meta thread

(Anonymous) 2018-08-30 04:30 am (UTC)(link)
Messed with some stuff in the browser, hopefully this helps.

Look for:

#primary > .inner:first-child {
padding: 0 3em;
}

Change it to:

#primary > .inner:first-child {
padding: 0;
}

If you can't find that bit, just paste the change-to into the stylesheet at the bottom, and it should override.

That should reduce the margins and make it a little better for mobile.

For headers, didn't bother fixing comments with icons, but...

Find this:

.comment .header {
background: #F17892;
color: #ffffff;
padding: 5px 2px 5px 2px;
}

and change it to this:

.comment .header {
background: #F17892;
color: #ffffff;
padding: 5px 2px 25px 2px;
}

then find this:

.entry .contents, .comment .contents {
margin: 1em 0;
}

and change it to this:

.entry .contents, .comment .contents {
margin: -25px 0 1em 0;
}

and that should move the From: (Anonymous) up into the header

Finally, optionally, find this:

.comment-poster, .poster-ip {
background: #F17892;
color: #ffffff;
padding: 5px 2px 5px 2px;
}

and change it to this

.comment-poster, .poster-ip {
padding: 5px 2px 5px 2px;
}

then find this:

.comment-poster .ljuser a {
color: #ffffff;
}

and just delete it. That'll get rid of the pink background on the inline From: (Anonymous) and make it so you can still see the names of logged-in users

Hopefully I caught everything, and hopefully that doesn't fuck everything up.

Re: Meta thread

(Anonymous) 2018-08-30 04:39 am (UTC)(link)
Oh yeah, condensing the vertical spacing

Find this:

.entry-wrapper, .comment-wrapper {
border-bottom: 1px solid #666666;
margin-bottom: 2em;
position: relative;
}

and change it to this:

.entry-wrapper, .comment-wrapper {
position: relative;
}

Re: Meta thread

(Anonymous) 2018-08-30 06:23 am (UTC)(link)
Nonny, you are a legend.
tardigradetreasurer: (Default)

Re: Meta thread

[personal profile] tardigradetreasurer 2018-08-30 03:13 pm (UTC)(link)
Anon, you are my hero. Thank you, this is great.