Results 1 to 3 of 3

Thread: Need help w/ a little HTML
      
   

  1. #1
    leebring's Avatar
    leebring is offline First Lieutenant
    Join Date
    Sep 2006
    Location
    Gainesville, Ga
    Posts
    179

    Default Need help w/ a little HTML

    Hi,
    Can someone help me with this html. It color needs to be Black, which I was able to do. I need to get rid of the underline, and mouse over must show italic and be red.

    <A HREF="http://search.freefind.com/find.html?id=7545377&amp;m=0&amp;p=0"><font color="black">Site Map</font></a>

    Thanks
    David

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

    Default Re: Need help w/ a little HTML

    Possibly be better using a bit of css.
    Place the 1st bit of code between your head tags using html area in the page property's.

    <style type="text/css">
    a.style2:link {color: #000000;text-decoration: none;}
    a.style2:visited {color: #000000;text-decoration: none;}
    a.style2:active {color: #000000;text-decoration: none;}
    a.style2:hover {color: #FF0000;text-decoration: underline;}
    </style>

    Now place the code below in a html box on the front of your BV page.

    <font style="font-size:13px" color="#000000" face="Arial"><a href="http://search.freefind.com/find.html?id=7545377&amp;m=0&amp;p=0" class="style2">Site map</a></font>

    Now preview.

  3. #3
    leebring's Avatar
    leebring is offline First Lieutenant
    Join Date
    Sep 2006
    Location
    Gainesville, Ga
    Posts
    179

    Default Re: Need help w/ a little HTML

    Thanks

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