chrismm (
chrismm) wrote in
getting_started2009-07-28 12:52 am
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
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!
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!
no subject
no subject
.navigation .inner a {
color: #878743 !important;
}
no subject
no subject
no subject
Do you have a tip how to apply this to the tags page and the navigation on the bottom of an entry, too?
no subject
Sure. Here you go:
.page-tags .tags-container .ljtaglist a {
color: #0a566c !important;
}
.page-entry .bottomcomment a {
color: #0a566c !important;
}
no subject
no subject
Also, can you please tell me how to use this for the calendar/archive page? For year and month view?
no subject
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;
}
no subject
Um, the code you provided:
navigation .inner {
It didn't work. This is for the calendar page, right?
no subject
no subject
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.
no subject
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.
no subject
.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;
}
no subject
no subject