xboxscene.org forums

Author Topic: Anyone Here Any Good With Html Coding?  (Read 46 times)

poo87

  • Archived User
  • Sr. Member
  • *
  • Posts: 470
Anyone Here Any Good With Html Coding?
« on: September 15, 2006, 02:17:00 AM »

I didnt know exactly where to post this question so I'll post it here seeing as how most of you know me here tongue.gif . Anyway, What I want to be able to do is have an image set as a clickable link and when you click it the img changes... does that make any sense?

Ex:

This would be the link unclicked:

IPB Image

And this would be it clicked:

IPB Image

Can anyone help me out? Thanks
Logged

The*galloping*zebra

  • Archived User
  • Hero Member
  • *
  • Posts: 725
Anyone Here Any Good With Html Coding?
« Reply #1 on: September 15, 2006, 08:33:00 AM »

I think what you are trying to do is called a 'rollover'. Photoshop can do it and programs like Dreamweaver can too, I know there are tutorials on how to do it on www.pixel2life.com.

If you don't have either program I wouldn't know where to begin to code it manually  happy.gif
Logged

throwingks

  • Archived User
  • Hero Member
  • *
  • Posts: 2690
Anyone Here Any Good With Html Coding?
« Reply #2 on: September 15, 2006, 08:43:00 AM »

CODE



    HREF="rollover_target.html"
    onMouseOver = "rollover('home')"
    onMouseOut  = "rollout('home')"
    >    SRC="http://i60.photobucket.com/albums/h34/_jake2k_/Banners/j2kbutton-.png"
    NAME="home"
    ALT="Home Page" BORDER=0
    HEIGHT=60 WIDTH=450
    >



Logged