HTMl link help please?

Discussion in 'Code Snippets and Tutorials' started by Rise and Fall, Mar 19, 2010.

Thread Status:
Not open for further replies.
  1. Rise and Fall

    Rise and Fall Level IV

    Joined:
    Dec 22, 2009
    Messages:
    1,790
    Likes Received:
    101
    i have image links, and they have a blue border around it

    how do i get rid of the blue border?
     
  2. Zer0

    Zer0 Level IV

    Joined:
    Mar 2, 2008
    Messages:
    3,037
    Likes Received:
    180
    Location:
    Home sweet home
    add the attribute "border=0"
     
    Rise and Fall likes this.
  3. Rise and Fall

    Rise and Fall Level IV

    Joined:
    Dec 22, 2009
    Messages:
    1,790
    Likes Received:
    101
    so simple, yet i didn't think of it

    thanks again!

    ok now i wanna get and get these image rollovers to work

    what is the most simple basic image rollover i can do?
    no java, no css

    using inline styles only is this possible?
    even if it only makes the image move a bit would be cool
     
  4. Junior

    Junior Administrator
    Staff Member

    Joined:
    Nov 8, 2009
    Messages:
    3,350
    Likes Received:
    169
    Location:
    I come from a land down under! (Maaaate!)
    The only one I know...

    Code (Text):
    1. <A
    2.     HREF="rollover_target.html"
    3.     onMouseOver = "rollover('home')"
    4.     onMouseOut  = "rollout('home')"
    5.     ><IMG
    6.     SRC="IMAGE.JPG"
    7.     NAME="home"
    8.     ALT="Home Page" BORDER=0
    9.     HEIGHT=130 WIDTH=115
    10.     ></A>
    11. <SCRIPT TYPE="text/javascript">
    12. <!--
    13. setrollover("ROLLOVERIMAGE.JPG");
    14. //--></SCRIPT>
    http://www.htmlcodetutorial.com/images/ ... pp_62.html

    But you said you didn't want javascript eh?

    I found the above by googling it, and have used it before with no problems. Also explains on there how to do multipels on one page.

    Or try this website for different styles.
    http://www.howtocreate.co.uk/tutorials/ ... gRoll.html

    OR this one:
    http://htmldog.com/articles/rollovers/
     
  5. Phee

    Phee Moderator
    Staff Member

    Joined:
    Aug 18, 2007
    Messages:
    6,206
    Likes Received:
    101
    problem solved, topic locked :)
     
Thread Status:
Not open for further replies.