Use CSS to style the current menu item: Step 1 – Give each page’s tag a unique id… <body id=”home”> <body id=”services”> <body id=”about”> <body id=”contact”> Step 2 – Give each link in your navigation a unique id that is duplicated with the nav menu on each page… <ul id=”navbar”> <li><a href=”home.htm” id=”home_link”> HOME</a></li> <li><a [...]
Add the following to your style sheet a {cursor: pointer; cursor: hand;} There are quite a few cursors to choose from: MAIN CURSORS hand style=”cursor:pointer;cursor:hand” crosshair style=”cursor:crosshair” text style=”cursor:text” wait style=”cursor:wait” move style=”cursor:move” help style=”cursor:help” RESIZE POINTER resize point north style=”cursor:n-resize” resize point south style=”cursor:s-resize” resize point east style=”cursor:e-resize” resize point west style=”cursor:w-resize” resize point [...]
Rollover table cell with hand pointer <table width=”182″ cellspacing=”2″ cellpadding=”1″ bordercolor=”#FFFFFF” border=”1″> <tr bordercolor=”#999999″> <td style=”cursor:pointer;cursor:hand” bgcolor=”#A2C9E6″ onMouseOver=”style.backgroundColor=’#EDF4FC’;” onMouseOut=”style.backgroundColor=”#A2C9E6”;” onClick=”location.href=’link.php’” nowrap> Set An Appointment Now</td> </tr> </table>
To add a one pixel border around and between table cells: <style> table {border-collapse: collapse;} td, th {border: 1px solid black;} </style>
In a table you can use: <table border=”0″ cellspacing=”0″ cellpadding=”0″> To do the same in CSS use: table {border-collapse: collapse;} td, th {margin: 0; padding: 0;}