Zal ([personal profile] zaluzianskya) wrote in [site community profile] dreamscapes2014-01-31 06:44 pm

Themes for Summertime

Theme name/layout: A Thing With Feathers / Summertime
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Theme name/layout: Reason Does Not Understand / Summertime
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Theme name/layout: Once Is Enough / Summertime
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Image info: I've modified the colors of some of the icons in the navbar for visibility purposes. The modified icons can be found here (as well as being linked to in the theme source code).
Additional info (for layouts): N/A! Color and image problems were solved in the comments here thanks to momijizukamori and ninetydegrees.

Also, I put together a few more themes in the meantime since I posted this entry (I was really bored/motivated); they're under a cut tag:


Theme name/layout: The Very Opposite of Meaning
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Theme name/layout: Take It Away
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Theme name/layout: Enough At Last
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Theme name/layout: I'm Gonna Let It Shine
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Theme name/layout: Dimensions
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview
Image info: Background image comes from Subtle Patterns, licensed CC-BY-SA.

Theme name/layout: Capricious Insect
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Theme name/layout: The Poet's Abstract Head
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Theme name/layout: Thicker Than Water
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview

Theme name/layout: Uncertain Inevitability
Author: [personal profile] zaluzianskya
Layout info: Info | Source | Preview
momijizukamori: Green icon with white text - 'I do believe in phosphorylation! I do!' with a string of DNA basepairs on the bottom (Default)

[personal profile] momijizukamori 2014-02-01 08:19 pm (UTC)(link)

The third line should work for what you want because of strange layout anatomy quirks, basically - .datetime is actually a span (which is a type of inline element) and not a div (which is a type of block element). Span elements won't stretch out to nice background blocks because they're meant to be used within stuff like a paragraph without disrupting flow. Block elements like divs will stretch out and disrupt flow if you use them in the middle of something.

So .comment .header is a div, and putting a background color on it colors both behind the subject and the date/time. HOWEVER these layouts have a color behind the subject (which is an h3, which is also a block level element), and that colors behind the whole subject block and sits on top of the color for the header block, so the header block color only shows behind date/time.

momijizukamori: Green icon with white text - 'I do believe in phosphorylation! I do!' with a string of DNA basepairs on the bottom (Default)

[personal profile] momijizukamori 2014-02-01 08:24 pm (UTC)(link)

HMMMM that might be an inheritance issue somewhere - those trip me up sometimes. I will delve deeper!

momijizukamori: Green icon with white text - 'I do believe in phosphorylation! I do!' with a string of DNA basepairs on the bottom (Default)

[personal profile] momijizukamori 2014-02-01 08:52 pm (UTC)(link)
Well I didn't see the first edit before I replied anyway so I guess it works out *g*

for the icon border (both entry and comment):

.has-userpic .entry .userpic, .has-userpic .comment .userpic {border-color: #YOURCOLOR !important;}

should get it for both regular and hover but if it disappears on hover you need:

.has-userpic .entry .userpic:hover, .has-userpic .comment .userpic:hover {border-color: #YOURCOLOR !important;}

as well.
momijizukamori: Green icon with white text - 'I do believe in phosphorylation! I do!' with a string of DNA basepairs on the bottom (Default)

[personal profile] momijizukamori 2014-02-01 09:38 pm (UTC)(link)

excellent! I'm still trying to figure out why the .comment .header bit isn't working, because it seems to work in Firebug :|a

carene_waterman: An image of the Carina Nebula (Default)

[personal profile] carene_waterman 2014-02-02 12:31 am (UTC)(link)
I got the:
.comment .header {background: color}


to work by appending it to your custom CSS stylesheet with the Firefox dev tools. So that's exactly where it would be if you put it in there yourself. There is nothing causing any inheritance issues here.

Did you perhaps type it in as:
.comment.header {background: color}


That's a really easy mistake to make, and it means something very different from the first rule since it refers to an element with both comment and header as class names--which doesn't exist.
carene_waterman: An image of the Carina Nebula (Default)

[personal profile] carene_waterman 2014-02-02 02:19 pm (UTC)(link)
Okay, I'm confused then.

The background of the comment itself is already white. #ffffff

Your code is working as per dev tools on the test journal you linked, you just can't see any change because you're putting white on white.