Results 1 to 4 of 4

Thread: changing text color on pausing up scroller

  1. #1
    Join Date
    May 2007
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default changing text color on pausing up scroller

    1) Script Title: pausing up scroller

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex2/crosstick.htm

    3) Describe problem: How do you change the color of the text? For instance, I changed the color of the background to black, and I need to change the color of the text to a different color so that it is able to be seen.

    Thank you in advance,

    DS

  2. #2
    Join Date
    Feb 2007
    Posts
    293
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You would add the color for both the text and for the links. So for example if you were using pscroller1, :

    #pscroller1{
    width: 200px;
    height: 100px;
    border: 1px solid black;
    padding: 5px;
    background-color: #000000;
    color: #ffffff;
    }
    #pscroller1 a{
    color: yellow;
    }
    #pscroller1 a:visited {
    color: #FFFFFF;
    }
    #pscroller1 a:hover {
    color: #eaeaea;
    }
    #pscroller1 a:active {
    color: yellow;
    }
    Last edited by Veronica; 05-29-2007 at 07:48 PM.

  3. #3
    Join Date
    May 2007
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Veronica,

    Thank you for the help, I did add the color but in the wrong spot. I will see if that works!

    DS

  4. #4
    Join Date
    May 2007
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Veronica, thank you it worked perfect!

    DS

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
  •