chrismm: Me, singing (Default)
chrismm ([personal profile] chrismm) wrote in [community profile] getting_started2009-07-28 12:52 am
Entry tags:

Transmogrified "previous 50" question

I'm using Transmogrified, and got it pretty much the way I want it, with one niggling exception:

The page forward/page backward thing is displaying at the top and bottom of the page, and it's in that #0000ff blue that the internet uses for links as a default. I want it be on the sidebar, where the rest of the navigation stuff is, and the #878743 green that I'm using for the rest of my links.

I can live with the top and bottom thing, if that's complicated to change, but I really want the color to match the green I'm using for the rest of my links. I've got all the navigation colors set, but apparently the page forward/page back thing isn't included in that. Can anyone help with coding suggestions?

Thanks!
dancing_serpent: (Default)

[personal profile] dancing_serpent 2009-07-28 09:33 am (UTC)(link)
I'd like to know about that, too. Same goes for the tags page, it's the same colours there and I haven't found a way to change it.
Edited 2009-07-28 09:33 (UTC)
ninetydegrees: Art & Text: heart with aroace colors, "you are loved" (Default)

[personal profile] ninetydegrees 2009-07-28 10:52 am (UTC)(link)
This CSS worked for me:

.navigation .inner a {
color: #878743 !important;
}
ninetydegrees: Art & Text: heart with aroace colors, "you are loved" (flowers)

[personal profile] ninetydegrees 2009-07-28 01:20 pm (UTC)(link)
You're welcome!
dancing_serpent: (Default)

[personal profile] dancing_serpent 2009-07-28 02:33 pm (UTC)(link)
Worked for me, too, thank you.

Do you have a tip how to apply this to the tags page and the navigation on the bottom of an entry, too?
ninetydegrees: Art & Text: heart with aroace colors, "you are loved" (Default)

[personal profile] ninetydegrees 2009-07-28 02:55 pm (UTC)(link)
You're most welcome!

Sure. Here you go:

.page-tags .tags-container .ljtaglist a {
color: #0a566c !important;
}

.page-entry .bottomcomment a {
color: #0a566c !important;
}
dancing_serpent: (Default)

[personal profile] dancing_serpent 2009-07-28 03:02 pm (UTC)(link)
Brilliant, thank you!
elizabeth_rice: Snoopy typing on his typewriter (Default)

[personal profile] elizabeth_rice 2009-08-02 08:45 am (UTC)(link)
I used the one for navigation and tags page. They worked for me too. But you know the manage tags link at the bottom of the tags page? It doesn't work for that.

Also, can you please tell me how to use this for the calendar/archive page? For year and month view?
ninetydegrees: Art & Text: heart with aroace colors, "you are loved" (Default)

[personal profile] ninetydegrees 2009-08-02 04:00 pm (UTC)(link)
Hmm. I can't see it but it may be because I'm looking at a community...

Edit: got it now. Here's the CSS for it:

.page-tags .manage-tags-link a {
color: #ff00ff !important;
}

Sure. Try this:

.navigation .inner {
color: #000 !important;
}
Edited 2009-08-02 16:15 (UTC)
elizabeth_rice: Snoopy typing on his typewriter (Default)

[personal profile] elizabeth_rice 2009-08-02 04:37 pm (UTC)(link)
Oooh, thanks! It worked (the manage tags link colour).

Um, the code you provided:
navigation .inner {

It didn't work. This is for the calendar page, right?
ninetydegrees: Art & Text: heart with aroace colors, "you are loved" (Default)

[personal profile] ninetydegrees 2009-08-02 04:51 pm (UTC)(link)
I thought you meant the year which is not a link. Did you mean something else?
elizabeth_rice: Snoopy typing on his typewriter (Default)

[personal profile] elizabeth_rice 2009-08-02 05:03 pm (UTC)(link)
This page:
http://elizabeth-rice.dreamwidth.org/calendar

And the month view:
http://elizabeth-rice.dreamwidth.org/2009/01/

Notice the link colours? They are the standard kind and not my custom colours.
ninetydegrees: Art & Text: heart with aroace colors, "you are loved" (Default)

[personal profile] ninetydegrees 2009-08-02 05:38 pm (UTC)(link)
On http://elizabeth-rice.dreamwidth.org/calendar I can only see 2009. It's not a link since this is the current year. I can use .navigation .inner to change it.

On http://elizabeth-rice.dreamwidth.org/20 09/01/ I can't see anything in the navigation box.

If I look at calendar pages where I can see links, using .navigation .inner a works for me.

(deleted comment)
ninetydegrees: Art & Text: heart with aroace colors, "you are loved" (Default)

[personal profile] ninetydegrees 2009-08-02 06:59 pm (UTC)(link)
Oh, then, it's:


.page-archive .month .footer .inner a {
color: #ff00ff !important;
}

.page-archive .month .day-has-entries a {
color: #ff00ff !important;
}

.page-month .month dt a {
color: #ff00ff !important;
}

.page-month .month .entry-title a {
color: #ff00ff !important;
}

.page-month .month .tag a {
color: #ff00ff !important;
}
elizabeth_rice: Snoopy typing on his typewriter (Default)

[personal profile] elizabeth_rice 2009-08-02 07:25 pm (UTC)(link)
Thank you so much! All worked! Also, I'm sorry for taking up so much of your time.

[personal profile] karenlord 2009-08-04 01:14 pm (UTC)(link)
Here via [community profile] style_system. Thank you so much! This was exactly what I needed.