This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Changing font size and color for text link

11 years ago · Last reply by Andrew Misplon 11 years ago

My text link was defaulting to blue with a red hover. I have no text link set to these colors in my Customize Fonts option. But I see that color it in my css file and changed it – but to no result.

So I went into Custom CSS and added:

/* remove underline and change color of text  links */
a:link {
	text-decoration: none;
    color: #959595;
    font-size: 200%;
}
a:visited {
    text-decoration: none;
 	font-size: 200%;
}
a:hover {
    text-decoration: none;
	color: #959595;
	 font-size: 200%;
}
a:active {
    text-decoration: none;
	 font-size: 200%;
}

This stopped the underlining but the link is still in a small font. Any ideas?

URL: http://firstclassvacations.com/featured-packages/

This is our free support forum. Replies can take several days.

Need fast email support? Get SiteOrigin Premium

Replies

2
  1. Deborah Tobias 11 years, 1 month ago

    Forgot to mention, the link is the words PLATINUM PACKAGE under the banner…

  2. Andrew Misplon Staff 11 years, 1 month ago

    Hi Deborah

    Your last CSS comment is breaking all CSS below it, this is what you’re after:

    /* remove underline and change color of text  links */

    Right now, it’s missing the closing:

    */

    Hope that helps.

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread