Skip to main content

Hello!  I am trying change the after action color of the “Like” and Subscribe” actions at the bottom of posts.  I went to Theme, then Colors, Fonts, Buttons. The only place I see the yellow color is in buttons.  Help please 😀

 

Hi @A11ey 👋,

You would need to use some custom CSS to edit the colours for these actions such as:

.post__action-link {
color: yellow;
}

I’d advise trying this on your sandbox environment to ensure that it doesn’t affect any other elements on the platform.


Thanks @olimarrio, very helpful! 

I added this code:

 

} 
.post__action-link {
color: blue;
}

 

Using that I was able to change the Action color to blue, but the after Action is still yellow.  

  “Unsubscribe” still yellow

Other ideas?


Found it!!  In order to change the default of the active CTA find the code below in Custom CSS

 

a.is-active {
  color: yellow !important;
}

Updated to 

a.is-active {
  color: teal !important;
}

 


Reply