[Theme: Raindrops] child theme
-
Attempting to create a child theme, so next time there’s an update I don’t have to go nuts fixing things, and while I’m at it I’m trying to make all links underlined even when not hovered over. I’m doing something wrong, not sure what.
File saved as style.css in “…/raindrops/raindrops-child/”
/*
Theme Name: Raindrops Child
Template: raindrops
Version: 0.1.0
*/@import url(“../raindrops/style.css”);
a {
font-family:Book Antiqua, “Times New Roman”, Times, serif;
}a:link {
color: #f1f1f1;
text-decoration: underline;
!important;
}a:active {
color: #f1f1f1;
text-decoration: underline;
!important;
}a:visited {
color: #f1f1f1;
text-decoration: underline;
!important;
}a:hover {
color: #f1f1f1;
text-decoration: none;
!important;
}body {
font:16px/1.231 Book Antiqua,helvetica,clean,sans-serif;
!important;
}table {
font-size:inherit;
font:100% Book Anqitua;
!important;
}select,input,button,textarea,button {
font:99% Book Antiqua,helvetica,clean,sans-serif;
!important;
}body.ie7{
/* for IE6/7 */
font-size:small;
/* for IE Quirks Mode */
font:x-small Book Antiqua; !important;
}
- The topic ‘[Theme: Raindrops] child theme’ is closed to new replies.