+ Reply to Thread
Results 1 to 5 of 5

Thread: How Can I Highlight text as you roll over it
      
   

  1. #1
    LPoling's Avatar
    LPoling is offline Sergeant
    Join Date
    Jun 2006
    Location
    Beckley WV
    Posts
    27

    Question How Can I Highlight text as you roll over it

    Hello Again; I am always seeing neat things on other websites. I saw a websight like mine and when you went down the list of titles on his page the title line turned yellow. I tryed to use the rollover tool but that seems to be only for pictures.
    Larry P.
    Your Oldtime Radio Store
    www.yotrs.com

  2. #2
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,719

    Default Re: How Can I Highlight text as you roll over it

    Hi, do you have a sample of the mouse over you have seen, as there are many different types & styles.

  3. #3
    LPoling's Avatar
    LPoling is offline Sergeant
    Join Date
    Jun 2006
    Location
    Beckley WV
    Posts
    27

    Default Re: How Can I Highlight text as you roll over it

    No I don't if you want to see what I'm talking about go to otrcat.com and click on all US shows or all American shows and run down the list with you mouse. This is what I want to do.
    Larry
    yotrs.com

  4. #4
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,719

    Default Re: How Can I Highlight text as you roll over it

    Hi, that one is done with some java. Place this code in the head of your page.

    <script type="text/javascript"><!--
    function cOn(tr){
    tr.style.backgroundColor="#FFFF66";
    }
    function cOut(tr){
    tr.style.backgroundColor="#ffffff";
    }
    function cOut2(tr){
    tr.style.backgroundColor="#FFFFCC";
    }
    //--></script>


    Now create a table on your BV page.
    In the 1st box of each row, right click on the cell>cell html>before tag & paste the code below in this area.

    <tr onmouseover=cOn(this); onmouseout=cOut(this);>


    Sample table LINK



    .

  5. #5
    LPoling's Avatar
    LPoling is offline Sergeant
    Join Date
    Jun 2006
    Location
    Beckley WV
    Posts
    27

    Default Re: How Can I Highlight text as you roll over it

    Thank You For your help. I knew there were some smart people out there.
    I'll try it when I get home from work today.
    Larry

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49