Results 1 to 3 of 3

Thread: Translucent scroller

  1. #1
    Join Date
    Jul 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Translucent scroller

    1) Script Title: Translucent scroller

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...centscroll.htm

    3) Describe problem: I really love this script but is it possible to change the font attributes somehow please?

    For instance, I'd quite like the text to appear in Arial bold and 15px size but, as you can tell from my user name, I haven't got a clue how to do this so could anyone help please?

  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

    Put this style block in the head of the page:

    Code:
    <style type="text/css">
    #canvas0, #canvas1 {
    font-family:sans-serif;
    font-weight:bold;
    color:red;
    }
    </style>
    You can use any valid css property/value pairs. To control the links specifically, use a rule set like so inside the same style block:

    Code:
    #canvas0 a, #canvas1 a {
    color:black;
    font-style:italic;
    }
    - John
    ________________________

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

  3. #3
    Join Date
    Jul 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for taking the time to help John, it's much appreciated.

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
  •