Hello, eductronics!
1. To change the Post Tag’s Border Color to #FFAA00 on Home Page only, Insert the next code into CUstomizing->General->Additional CSS:
.home .tag-cloud-link{
border:1px solid #FFAA00!important;
}
If you want to change the border color sitewide, insert the next code instead of the previous one:
.tag-cloud-link{
border:1px solid #FFAA00!important;
}
2.
To change the Post Tag’s Text Color and Border Color on the first Tag only (Arduino), Insert the next code into CUstomizing->General->Additional CSS:
#primary .tagcloud a:first-child{
border: 1px solid #FFAA00!important;
color: #FFAA00!important;}
}
Or, if you want to change both (Arduino and Arduino IDE), insert the next code instead of the previous one:
#primary .tagcloud a{
border: 1px solid #FFAA00!important;
color: #FFAA00!important;}
}
Regards
This reply was modified 3 years, 9 months ago by Zex .