Results 1 to 3 of 3

Thread: link

  1. #1
    Join Date
    May 2005
    Posts
    141
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default link

    the site i am makeing (http://willie.envisionssoftware.com/matrix/home.html) has a link to the home page. when you first view it, the link is the blue with underline, but the mouseover is a green color. after you have viewed the page, then go back, the colors are all right, is this a problem with my css, or my javascript code

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Hard to say but, to start, this needs some fixing (from http://willie.envisionssoftware.com/...s/welcome.html source):

    Code:
    <link type="text/css" href=style.css rel=stylesheet>
    <style type="text/css">
    <style type="text/css">
    
    A:link { text-decoration: none; color:#009900; }
    A:visited { text-decoration: none; color:#009900; }
    A:hover { text-decoration: none; color:#33ff66; }
    
    
    .matrix { width:15px; font:15pt Lucida Console, Courier, monospace; text-align:center; padding:0px; background-color:#000 }
    </style>
    The code in red links to a style sheet that is not there. The code in green is not needed as it is repeated just below. Get rid of both of them and see if things don't improve.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    May 2005
    Posts
    141
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    it worked, thanks.

Bookmarks

Posting Permissions

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