Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Aug 2006
    Posts
    197
    Plugin Contributions
    1

    help question Stylesheet Question

    Hi,

    My site is www.vapenow.com. On the EZ Pages header at the top are a couple links ('Vaporizer FAQ's' and 'Health Benefits'). They are currently displaying in orange (#993311) and change to red underline normal weight when hovered over.

    I would like to have these links display in navy blue and turn yellow. no text decoration, bold weight when hovered on like the reviews and new products sideboxes already do.

    I've been messing around with my stylesheet all afternoon, but can't seem to figure out the right place to do the edits.

    Any help is greatly appreciated!

    Thanks,

    Nate

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Stylesheet Question

    Find or ADD these to your stylesheet:along with ant other font styling you want

    Code:
    #navEZPagesTop a {
            color: #??????;
    
    #navEZPagesTop a:hover{
            color: #??????;
    }
    
    #navEZPagesTop a:visited {
            color: #??????;
    }
    }

  3. #3
    Join Date
    Aug 2006
    Posts
    197
    Plugin Contributions
    1

    help question Re: Stylesheet Question

    Thanks Kobra. That did the trick.

    One last issue I'm trying to figure out. Right now on the unvisited EZ-Pages links, when the cursor hovers they change color to yellow (#FFFF33).

    However, on visited EZ-Pages links, when the cursor is over the link it doesn't change color. I'd like both visited and unvisited pages to change to yellow (#FFFF33).

    Any advice? Thanks.

  4. #4
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Stylesheet Question

    However, on visited EZ-Pages links, when the cursor is over the link it doesn't change color.
    When you are there it is no longer a link

  5. #5

    Default Re: Stylesheet Question

    Hi,
    Currently you have a hover color set to #FF0000 (that nice yellow.
    a:hover, #navCatTabs ul li a:hover {
    color: #FF0000;
    text-decoration: underline;
    font-weight: normal;
    }
    However because of the next rule in your style sheet:
    a:visited, #navEZPagesTOC ul li a{
    color: #9a9a9a;
    text-decoration: none;
    }

    and more specifically because of this line:
    #navEZPagesTOC ul li a

    Your telling all links under #navEZPagesTOC to have a visited
    color that is dark.


    - A quick fix would be to to remove ", #navEZPagesTOC ul li a"
    the part in quotes from the style rule.

  6. #6
    Join Date
    Aug 2006
    Posts
    197
    Plugin Contributions
    1

    Default Re: Stylesheet Question

    Quote Originally Posted by kobra View Post
    When you are there it is no longer a link
    Even if I go back to 'Home' the link will still no longer change to yellow on hover.

    Once any of the ez-pages links are clicked on they no longer turn yellow on hover no matter where on the site one is.

    Thanks!

  7. #7

    Default Re: Stylesheet Question

    Sorry, wrong answer by me, brain malfunction!

    Further down in your stylesheet is where the colors for these links are controlled, find these lines.

    #navEZPagesTop a {
    color: #004080;
    }

    #navEZPagesTop a:hover{
    color: #FFFF33;
    text-decoration: none;
    font-weight: bold;
    }

    #navEZPagesTop a:visited {
    color: #004080;
    }

    Change the color of #navEZPagesTop a:visited{}
    to whatever color you want the visited links to display as,
    or you could remove the line and the visited links would always
    be yellow when you hovered over them.

  8. #8
    Join Date
    Aug 2006
    Posts
    197
    Plugin Contributions
    1

    Default Re: Stylesheet Question

    Quote Originally Posted by rainthebat View Post
    or you could remove the line and the visited links would always
    be yellow when you hovered over them.

    Perfect. That did the trick. Thank you very much!

  9. #9
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Stylesheet Question

    I looked quickly and did not see where you entered the listings that I posted???

    When I add them to the end of your stylesheet this works try adding them (correct the misplaced/missing closing tag and checking if they currrently exist

  10. #10
    Join Date
    Aug 2006
    Posts
    197
    Plugin Contributions
    1

    Default Re: Stylesheet Question

    I added them around line 350 on the stylesheet. If you look at www.vapenow.com everything is working how I want it to now. Thanks for your guidance!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Quick stylesheet question
    By YZ250 in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 19 Jan 2009, 04:27 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