Home › Forums › CSS › simple class with different color between header,page,footer › Reply To: simple class with different color between header,page,footer
April 1, 2015 at 8:45 am
#199418
Member
You would have to base this on a parent class that designates what page or place where this element might be found….such as
header i.fa.fa-google-plus {
color: red;
}
footer i.fa.fa-google-plus {
color: green;
}
body.home header i.fa.fa-google-plus {
color: #000000;
}
etc