Changing link color on pages

Homepage Community Forums Epik Theme Support Changing link color on pages

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #5113
    truenorthquest
    Customer

      I know it’s simple … how can I change the link color on pages in CSS?
      I know how to do it in main content areas like posts.
      Thanks … great theme!

      #5124
      Eric
      Customer

        Search in your css file for this –

        a, 
        h2 a:hover {
            color: #000;
            text-decoration: none;
        }

        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

        #5130
        truenorthquest
        Customer

          Thanks

          #5131
          truenorthquest
          Customer

            How can I specifically change the link color on pages (I’ve already changed the link color on posts with the CSS below), and not universally including the sidebar?

            .post .entry-content a, .post .entry-content a:visited {
            color: #000;
            text-decoration: underline;
            }

            #5132
            truenorthquest
            Customer

              Thanks. I got it.

              I added this code:

              .page .entry-content a, .page .entry-content a:visited {
              color: #000;
              text-decoration: underline;
              }

              #5134
              Eric
              Customer

                You’re Welcome


                I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

              Viewing 6 posts - 1 through 6 (of 6 total)
              • The topic ‘Changing link color on pages’ is closed to new replies.