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 images are set in the themes so you need to link to them in the image settings if you want them to be displayed. You may want to have a look at http://www.dreamwidth.org/customize/advanced/layerbrowse?expand=457415#summertime/layout if you need some URLs.
What do you mean by problems? Would you like the titles to have the same color, link or not?
no subject
The problems are readability; the link color that gets used in the first layout is hard to read on the module title background color, and the visited link color on the third one is hard to read on the last layout. @momijizukamori said they'd help with that though!
no subject
no subject
no subject
.entry-title a:visited {color:#YOURCOLOR !important;}
.comment .header { background-color: #YOURCOLOR !important;}
Those go in the Custom CSS box here and are, in order, the module link title color, entry title visited link, and background for date/time on comments. Let me know if they don't work as expected, my brain has been hibernating this winter, I think.
no subject
I think I wasn't clear enough on the third one because I didn't mean the comment subject line, I meant the part underneath it where the date and time are shown. Inspect Element told me that that part is .comment .datetime, but changing that to the value I wanted resulted, in, well...
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!
no subject
no subject
Hmmm, we don't have you on the dreamscapes CLA list BUT Denise may still have it on file. Would it have been under this username?
no subject
Edit: Ah, wait, "dreamscapes CLA list" -- so is a new one necessary for each area of the site? The one I submitted was for a design for the Zazzle shop.
no subject
Nah, its more that there's a masterlist only Fu and Denise have access to (because it has legal names etc on it) and when a new person submits something here, they tell me or 90d that the user has a CLA on file and we make a note on our list so if they submit stuff again we aren't asking them over and over. So if you've submitted one you're good, I'll just verify with D :)
no subject
no subject
no subject
no subject
no subject
....and that made both of them come through. Oh, computers. Thanks!