Site logo

Archived topic

Want to change colour of Subscribe button

3 replies · Started by Ashish on April 10, 2021

Viewing posts 1–4 of 4

I have imported the stream template from the GP site library, I have customized it as per my requirement but, could not find any option to change the color of Subscribe button which is located on the homepage. Kindly help me to change the text color as well as the hover color of the button.

Hi there,

go to Customizer > Additional CSS and look for this:

/* navigation button */

.main-navigation:not(.slideout-navigation) .main-nav li.nav-button a {
  color: #ffffff; /* Text color */
  border: 3px solid #66ccaa; /* Border Color */
  padding: 8px 18px;
  border-radius: 2px;
  margin-left: 24px; /* space to the left of button */
  transition: all 0.6s ease 0s;
} 

.main-navigation:not(.slideout-navigation) .main-nav li.nav-button a:hover {
	color: #66ccaa; /* Hover text color */
	border: 3px solid #ffffff; /* Hover border color */
}

I have commented the lines above that you need to change.

Thanks a lot, now I am able to change the color of text and border of the button

Glad to hear that

This archived topic is closed to new replies.