
EARTHY: Download | Test run | Support
2 Column, Beige, Tan, Brown, Umber, Grey, Black, Widget, Left Sidebar, Neat, Earthy, Shades, Environment, Green, Recycle, Save the Planet, Global Warming Template
Earthy is a new 2 column, “widget ready” WordPress theme with a left sidebar, with an earthy essence highlighted by brown and beige shades by headsetoptions.org and MandarinMusing. Ideal for environmental websites.
Please go to our WordPress downloads and support page for theme support, queries or customized web design projects.You may view, download and testrun more of our themes here.
For the free support we provide, all we ask you is to spread the word. If you like our themes, please do Digg/support our site, thanks.
I’m using this theme bit am wondering how to add a previous post link at the bottom and how to change the greyish links in the side bar to something darker. My readers have complained they can’t read the links to previous posts or to who commented. I’ve changed every color and it doesn’t appear to actually change anything. I realize you may not want it changed because it wold wreck the design but is there some reason I can’t get the colors to change?
@ coop
To add bottom navigation (prev and next) use each line of the below code within < and > (I removed it to display the code)
div class=”navigation”
div class=”alignleft”
?php next_posts_link(‘« Previous Entries’) ?
/div
div class=”alignright”
?php previous_posts_link(‘Next Entries »’) ?
/div
/div
As for the link colors, define link colors for #leftnav something like the example below:
#leftnav a, #leftnav a:visited {
color: #666666;
background : inherit;
text-decoration: none;
}
#leftnav a:hover {
color: #0000ff;
background : inherit;
text-decoration: underline;
}
This is just an example, you need to change the colors.
Thank you I figured out the colors I guess I just missed it the first time due to oversight.
Thank you very much.