Zal (
zaluzianskya) wrote in
dreamscapes2014-01-31 06:44 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[site community profile]](https://www.dreamwidth.org/img/comm_staff.png)
Entry tags:
Themes for Summertime
Theme name/layout: A Thing With Feathers / Summertime
Author:
zaluzianskya
Layout info: Info | Source | Preview
Theme name/layout: Reason Does Not Understand / Summertime
Author:
zaluzianskya
Layout info: Info | Source | Preview
Theme name/layout: Once Is Enough / Summertime
Author:
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:
zaluzianskya
Layout info: Info | Source | Preview
Theme name/layout: Take It Away
Author:
zaluzianskya
Layout info: Info | Source | Preview
Theme name/layout: Enough At Last
Author:
zaluzianskya
Layout info: Info | Source | Preview
Theme name/layout: I'm Gonna Let It Shine
Author:
zaluzianskya
Layout info: Info | Source | Preview
Theme name/layout: Dimensions
Author:
zaluzianskya
Layout info: Info | Source | Preview
Image info: Background image comes from Subtle Patterns, licensed CC-BY-SA.
Theme name/layout: Capricious Insect
Author:
zaluzianskya
Layout info: Info | Source | Preview
Theme name/layout: The Poet's Abstract Head
Author:
zaluzianskya
Layout info: Info | Source | Preview
Theme name/layout: Thicker Than Water
Author:
zaluzianskya
Layout info: Info | Source | Preview
Theme name/layout: Uncertain Inevitability
Author:
zaluzianskya
Layout info: Info | Source | Preview
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
Theme name/layout: Reason Does Not Understand / Summertime
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
Theme name/layout: Once Is Enough / Summertime
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
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]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
Theme name/layout: Take It Away
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
Theme name/layout: Enough At Last
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
Theme name/layout: I'm Gonna Let It Shine
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
Theme name/layout: Dimensions
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
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]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
Theme name/layout: The Poet's Abstract Head
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
Theme name/layout: Thicker Than Water
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
Theme name/layout: Uncertain Inevitability
Author:
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Layout info: Info | Source | Preview
no subject
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.
no subject
(On an unrelated note: Do you know the css necessary to change the border color in entries and comments? While I'm fiddling around with the CSS I may as well mess with that too!)
no subject
HMMMM that might be an inheritance issue somewhere - those trip me up sometimes. I will delve deeper!
no subject
Curse you for replying right as I was about to edit and add in a very important missing word: Icon border color. It's been a long day @_@
no subject
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.
no subject
no subject
excellent! I'm still trying to figure out why the .comment .header bit isn't working, because it seems to work in Firebug :|a
no subject
no subject
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:
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.
no subject
.comment .header {background-color: #ffffff !important;}
and this is the result.
no subject
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.
no subject
Sorry for the trouble!