Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Dreamweaver/html help D:
#8
Not sure if this is what you want but making a button that changes on mouse over is something like this
Code:
<html>
   <head>
      <style>
         .button a {
            display: block;
            width : 100px;
            height : 20px;
            background: url(foo.jpg);
         }

         .button a:hover {
            background: url(bar.jpg);
         }
      </style>
   </head>
   <body>
      <div class="button"><a href="#">link</a></div>
   </body>
</html>
Reply


Messages In This Thread
Dreamweaver/html help D: - by icephoenix21 - 2012-03-22, 03:50 PM
Dreamweaver/html help D: - by sicnarf - 2012-03-22, 07:46 PM
Dreamweaver/html help D: - by XTOTHEL - 2012-03-22, 08:19 PM
Dreamweaver/html help D: - by sicnarf - 2012-03-22, 08:28 PM
Dreamweaver/html help D: - by icephoenix21 - 2012-03-23, 11:29 AM
Dreamweaver/html help D: - by icephoenix21 - 2012-04-26, 11:51 PM
Dreamweaver/html help D: - by XTOTHEL - 2012-04-27, 01:13 AM
Dreamweaver/html help D: - by happylight - 2012-04-27, 01:21 AM
Dreamweaver/html help D: - by icephoenix21 - 2012-04-28, 01:14 AM
Dreamweaver/html help D: - by iamflip - 2012-04-28, 01:31 PM
Dreamweaver/html help D: - by happylight - 2012-04-28, 11:50 PM
Dreamweaver/html help D: - by icephoenix21 - 2012-04-29, 09:27 PM
Dreamweaver/html help D: - by iamflip - 2012-04-30, 07:22 PM

Forum Jump:


Users browsing this thread: