|
|
#1 (permalink) |
|
Registered User
Fresh Surpasser
Joined in Sep 2004
18 posts
Gave thanks: 0
Thanked 0 times
|
Simple Links Page that can impress
I need to put on my main page, a set of links to sub-areas of the site. I was thinking somethign along the lines of what Surpass uses on the Ticket status area. This is basically all I need done as far as coding goes, so I hate to spend a lot of time learing all the intricacies of CSS and tables to make this work.
Just so you don't have to look, the page i am referring to has plain text inside tables. When you roll over the table it blinks to a different color (the background). The text has no color to it, whether clicked or not, and isn't underlined. The table has a pixel wide line surrounding it. Also, the entire location where the link resides is clickable. I tired 'stealing' it and hacking it up in Dreamweaver, but I would have had a heck of a mess if I didn't just start from scratch. Hopefully someone has some good places they can refer me to for a quick rundown of how to accomplish this. I'm not asking anyone to do it for me, but I won't complain if they do either ![]() Thanks
__________________
Chris Erickson Server: Gotti http://www.godsevolved.com http://downloads.godsevovled.com http://portal.godsevolved.com http://gallery.godsevovled.com |
|
|
|
|
|
#2 (permalink) |
|
rocks your socks.
Resident.
Joined in Mar 2004
Lives in fear of Obama.
Hosted on Pass 7
13,160 posts
Gave thanks: 8
Thanked 35 times
|
This way may help you learn it a little easier since it is seperated out:
Put this in the head. This is the css that you would be using. Code:
<style>
a {text-decoration: none;}
a:hover {color: red;}
td#linkstable {border: 1px solid #000000;}
</style>
this is the table part with the link Code:
<table width="100%" border=0" cellspacing="0" cellpadding="0">
<tr>
<td id="linkstable"><a href="http://www.thelink.com">The Text Link</a></td>
</tr>
</table>
i'm pretty sure this is what you were after. if not, let me know. i should be able to moddify it correctly, or someone else here who is a css expert may be able to |
|
|
|