Headline color

trying to color this headline white but will not accept any inputs. Maybe you could have a look.

Hey,

Could you be more specific with your question? I changed the headline background to white without any problems: http://prntscr.com/ha5pj3

I wanted the text to be white on a colored background, but for some reason is not changing to that color

Hi There,

The <a> tag will override the color.

So please add the inline CSS to the <a> tag:

Regards!

Thankyou, did not realize the a tag overided the color but anyway works fine now.

just one more question, is there a way for the word to highlight when you hover over it, like a regular linked word?

Hi There,

Simply assign a custom class to your link tag for example my-link,

<a href="#" class="my-link">Link</a>

Then add a CSS rule into the Custom > CSS area to target that custom class.

.my-link:hover {
  color:red;
}

Hope that’s clear.

thanks I tried that but did not work. I tried it on the Alabama link and have left the code there. I double checked the code and was exactly as you said.

Hi,

Please change the css code to this.


.my-link:hover {
  color:red !important;
}

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.