Welcome to TalkGraphics.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2006
    Location
    Central North Carolina
    Posts
    844

    Default Link color changes

    I give - again!!!

    Have some email links and a couple of others - have blue background so have them in white.

    When I upload and go to site they are a deep redish purple.

    All the white text on the second page was this color but when I went to "arrange" and brought it to the front, it is now fine - does not work with links, however.

    Suggestions? - jb

  2. #2
    Join Date
    Aug 2000
    Location
    Harwich, Essex, England
    Posts
    21,932

    Default Re: Link color changes

    Jeb,
    The reason is probably due to your testing of the site. The purple colour is due to the a:visited {color:#800080;} in css. Your browser is remembering you've visited this email link and is rendering it a:visited {color:#800080;}. Probably if you delete your temporary internet files and refresh the browser you'll see it as white again until clicked. (Or you could change the a:visited {color:#ffffff;} and have visited links remain as white)
    Egg

    Minis Forum UM780XTX AMD Ryzen7 7840HS with AMD Radeon 780M Graphics + 32 GB Ram + MSI Optix Mag321 Curv monitor
    + 1Tb SSD + 232 GB SSD + 250 GB SSD portable drive + ISP = BT + Web Hosting = TSO Host

  3. #3

    Default Re: Link color changes

    Egg is correct. The default link/hover/visited colours are standard.

    If you need these to be different, you must edit the default.css found in the index.htm_files folder when you export from Xtreme.

    If you were to replace Xtremes css with the one below, you will get white links with grey hover.

    Code:
    /* Document settings */
    body {background-color:#ffffff; font-family:sans-serif;}
    a[href] {color:#ffffff;}
    a[href]:hover {color:#c0c0c0; cursor:pointer;}
    a[href]:visited {color:#ffffff;}
    a[href] * {text-decoration:underline;}
    div {unicode-bidi:bidi-override;}
    span {unicode-bidi:bidi-override;}
    sup {font-size:0.5em;}
    sub {font-size:0.5em;}
    Of course the other alternative is to make the text links an image (convert to shapes) rather than plain text.
    Then you can choose whichever colour you want in Xtreme without having to edit css code later.
    Last edited by steve.ledger; 28 May 2008 at 12:57 AM.

 

 

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
  •