Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2008
    Posts
    218
    Plugin Contributions
    0

    Default How to change color of ezpage links?

    I saw in css style sheet that I can change the color of the links under:

    a:link, #navEZPagesTOC ul li a {
    color: #009900;

    However, it changes every single link on the home page to that color. If I want to make my ezpage header links one color and the rest of my links to another color, is that possible. My site is www.bendisskin.com. I want to keep my header links grey, but the rest of my links blue.

    Any help would be greatly appreciated!

    Steve

  2. #2
    Join Date
    Mar 2008
    Location
    Cape Town & London (depends on the season)
    Posts
    2,975
    Plugin Contributions
    0

    Default Re: How to change color of ezpage links?

    a:link, #navEZPagesTOC ul li a {
    color: #009900; }

    You will discover that the standard stylesheet "bundles" some classes and ID's together in many cases. The one above has bundled the generic a:link and the #navEZPagesTOC ul li a

    You need to separate bundles if you want different styles to apply to the individual components:-

    a:link, {
    color: #009900; }

    #navEZPagesTOC ul li a {
    color: #D6F6F6; }

    (Remember that styles are read chronologically - the last stated style in a stylesheet is the one that's active in a browser.)

 

 

Similar Threads

  1. How to change EZpage color?
    By cdhi2002 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 19 Jan 2010, 10:34 PM
  2. changing font color of ezpage links in top header
    By circlegtractors in forum Templates, Stylesheets, Page Layout
    Replies: 15
    Last Post: 13 Jun 2009, 10:40 PM
  3. How to Change color of links on main page
    By wootoot1212 in forum Templates, Stylesheets, Page Layout
    Replies: 11
    Last Post: 19 Jun 2008, 09:28 PM
  4. How to change color of links (ezpages)?
    By sfklaas in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Apr 2008, 10:33 PM
  5. How can I change the vertical alignment of the ezpage links?
    By bpetruzzo in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 28 Jan 2008, 03:59 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg