Link colors for everything but the home page

Homepage Community Forums Epik Theme Support Link colors for everything but the home page

Tagged: , , ,

  • This topic has 6 replies, 2 voices, and was last updated 10 years ago by CTS.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #11395
    CTS
    Customer

      Hello,

      When I use this css code all of the links globally change and that effect is not wanted.

      Is there just a way to change the links on everything but the home page?

      This blue looks great for the white pages but is too much for the home page which looks great as is.

      .epik-black a {
      color: #008ae3;
      }

      Thanks for any suggestions!

      Site link:
      http://craftt44.wwwssr4.supercp.com/

      #11400
      Eric
      Customer

        You could do it the opposite way and add code that will show up specifically for your homepage and it will only show up on the homepage –

        .home .epik-black a {
            color: #333;
        }

        Then you could add a different color for the rest of the site by adding this (or whatever color you want) –

        .epik-black a {
            color: #008ae3;
        }

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

        #11413
        CTS
        Customer

          Hi Eric,
          Hi Eric,
          Thanks for your help here.

          I am having no luck with this code:

          .home .epik-black a {
             color: #333;
          }

          I have tried a few places top, bottom and in the black section with no effect.
          Do I need to remove a css statement or do I need to place it somewhere special?

          Thanks for your help!

          Shelby

          #11420
          Eric
          Customer

            It should work if you’re using the black color theme. try adding just this –

            .home a {
               color: #ff0000;
            }

            The color above is red so you’ll notice it…..change it to whatever you need.


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

            #11447
            CTS
            Customer

              Hi Eric,

              With you help we are making progress. Now if I can do these last 2 things it will be perfect.

              The “Pages” widget on my inner pages is blue due to the css code you provided. If I can make it the default grey color that would be great.
              I guess I would need to specify a css color for the pages widget if that is possible.

              Also, the footer on the inner pages needs to be the default grey not the blue.

              This would allow the pages themselves to have blue links while keeping everything else the same default color scheme.

              Is this possible?

              Any help is much appreciated!

              Thanks again,

              Shelby

              Site link:
              http://craftt44.wwwssr4.supercp.com/

              #11484
              Eric
              Customer

                You can add this to your css and it would override the link colors in your sidebar –

                .sidebar a {
                    color: #888;
                }

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

                #11502
                CTS
                Customer

                  Thanks you!

                Viewing 7 posts - 1 through 7 (of 7 total)
                • The topic ‘Link colors for everything but the home page’ is closed to new replies.