Hi there,
Glad to hear that helped!
Would you also happen to know how to change the colour to various other links on the site? i.e. comments, links to other sites, etc (everything that is still orange basically).
I found all other instances of the default red (#f35029) appearing in the theme’s style.css below. You can add this to your site’s custom CSS and replace the #f35029 to completely replace the red:
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
color: #F35029;
}
a:hover,
a:focus,
a:active {
color: #F35029;
}
.site-title a:hover {
color: #F35029;
}
.main-navigation .sub-menu li:hover:before,
.main-navigation .children li:hover:before,
.main-navigation ul > li:hover > a,
.main-navigation ul ul > li:hover > a {
color: #F35029;
}
.menu-toggle,
.menu-toggle:focus {
color: #F35029;
}
@media screen and (max-width: 880px) {
.dropdown-toggle:hover,
.dropdown-toggle.toggled-on {
border-color: #F35029;
}
.dropdown-toggle:hover::after,
.dropdown-toggle.toggled-on:after,
.dropdown-toggle:active,
.dropdown-toggle:hover,
.dropdown-toggle:focus {
color: #F35029;
}
}
.entry-title a:hover,
.entry-title a:active {
color: #F35029;
}
.entry-content a,
.comment-content a,
.entry-content blockquote,
.comment-content blockquote,
.entry-content q,
.comment-content q {
color: #F35029;
}
.card .entry-title a:hover {
border-bottom-color: #F35029;
}
#infinite-handle span button {
color: #F35029;
}
.posts-navigation a {
color: #F35029;
}
.bypostauthor .fn:before {
color: #F35029;
}
.comment .comment-author a,
.comment .comment-reply-link {
color: #F35029;
}
.widget_calendar table a {
color: #F35029;
}
.widget_tag_cloud a[style] {
color: #F35029;
}