Hi there!
How would I do the following to my sidebar text:
1. Make the heading font larger and a different color
2. For links that show up under “Recent Posts,” make font larger and un-italicize text
Thanks!
Hey alexmasica!
Thank you for using Enfold.
1.) Add this on Quick CSS:
h3.widgettitle {
font-size: 20px;
color: orange;
}
2.) Use this on the recent post links:
.widget_recent_entries ul li a {
font-size: 15px;
}
Cheers!
Ismael
Thanks, Ismael! That was perfect.