Hi Wes, I’m sorry I should have been more descriptive. Yes, I meant the link color. I did however figure it out.
Before:
.footer-widgets,
.footer-widgets a {
color: #fff;
}
After:
.footer-widgets,
.footer-widgets {
color: #fff;
}
I also figured out how to change the a.hover as well.
Before:
.footer-widgets a.button,
.footer-widgets a:hover,
.footer-widgets a:focus {
color: #fff;
}
After:
.footer-widgets a.button,
.footer-widgets a:hover,
.footer-widgets a:focus {
color: #a708c5;
}
Thanks for the reply. I LOVE your themes!!! So well coded and easy to work with. Great job.
Wes,
I was just thinking that I probably shouldn’t make changes directly to my style.css file in the event there is an update to the theme. I’m using the Simple Custom CSS Plugin. Could you tell me what code I should use with this plugin?
Since this code has something to do with the section titled:
@media only screen and (max-width: 550px)
I know that I can’t simply use:
.left-content,
.right-content {
text-align: center;
/* I added this line below to center icons on mobile view */
padding: 0 0 0 0;
width: 100%;
}
I have to somehow reference this @media section but don’t know how. This is where I get confused.
Thanks
Hi Wes,
Disregard my request. After reading through the forum, I realized that the XML file was included with the Theme. I simply looked at the source code of the demo and managed to figure out what went where and more importantly, that the content within widgets are not part of the import process.
Thanks,
John
Hi Eric,
Thank you. The hard part was finding the ID for the custom home link. I found this tutorial which explained how to not only find the ID of the custom home link on the navigation bar, but also what code to use in the style.css
http://vanweerd.com/how-to-retrieve-a-menu-item-id-from-wp-3-navigation-menus/
http://vanweerd.com/how-to-replace-text-links-with-icon-links-in-wp-3-navigation-menus/
Just in case someone needs the same information.
Thanks for pointing me in the right direction.
John
