Text linker script

not from this site...
Post Reply
User avatar
Rustynail
Registered User
Posts: 6
Joined: Wed Jan 27, 2010 3:29 pm

Text linker script

Post by Rustynail »

Code: Select all
<br />
<br />
<style type="text/css">table#ll{margin:0 auto;border:2px solid #FFBE15;table-layout:fixed;background-color:#FCE71D;width:600px;}table#ll tbody

td{padding:2px;width:20%;overflow:solid;_text-overflow:ellipsis;}.&#8226;normal td{padding:2px;margin:2px;font-weight:bold;font-size:10pt;}table#ll tbody td
a,table#ll tbody td a:hover{white-space:nowrap;_height:1%;display:block;padding:3px 3px 7px;text-align:center;text-decoration:none;font-size:10pt;font-color:#FCE71D;margin-bottom:-0;}table#ll tbody td a{color:#FCE71D;background-color:#1e1e1e;}table#ll tbody

td a:hover{color:#FCE71D;background-color:#FAA139;font-weight:bold;font-size:10pt;}noscript{display:none;}</style><table id="ll" cellspacing="1"><tbody>
<tr>
<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
<td><a target="_blank" href="http://site-url"><strong>site_name</strong></a></td>
<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
</tr>
<tr>
<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
</tr>
</tbody></table><br />
<br />
<br />

Trying to get it to match your style lol
Last edited by Rustynail on Tue Feb 26, 2013 10:29 am, edited 1 time in total.

[center]Image[/center]

User avatar
spaceace
Site Owner
Posts: 991
Joined: Wed Dec 16, 2009 8:30 pm
Location: Ontario, Canada
Flag: Canada
Contact:

Re: Text linker script

Post by spaceace »

let me know how this works for ya. it looks alot longer, but all i did was organize the css part to make it more understandable.
Code: Select all
<br />
<br />
<style type="text/css">
table#ll{
	margin:0 auto;
	border:2px solid #620D0D;
	table-layout:fixed;
	background-color:#620D0D;
	width:600px;
}
table#ll tbody td{
	padding:2px;
	width:20%;
	overflow:solid;
	_text-overflow:ellipsis;
}
.&#8226;
normal td{
	padding:2px;
	margin:2px;
	font-weight:bold;
	font-size:10pt;
}
table#ll tbody td a,
table#ll tbody td a:hover{
	white-space:nowrap;
	_height:1%;
	display:block;
	padding:3px 3px 7px;
	text-align:center;
	text-decoration:none;
	font-size:10pt;
	font-color:#D69A4A;
	margin-bottom:-0;
}
table#ll tbody td a{
	color:#D69A4A;
	background-color:#1e1e1e;
}
table#ll tbody td a:hover{
	color:#620D0D;
	background-color:#D69A4A;
	font-weight:bold;
	font-size:10pt;
}
noscript{
	display:none;
}
</style>

<table id="ll" cellspacing="1">
	<tbody>
		<tr>
			<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
			<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
			<td><a target="_blank" href="http://site-url"><strong>site_name</strong></a></td>
			<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
			<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
		</tr>
		<tr>
			<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
			<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
			<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
			<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
			<td><a target="_blank" href="http://site_url"><strong>site_name</strong></a></td>
		</tr>
    </tbody>
</table>
<br />
<br />
<br />
Last edited by spaceace on Tue Feb 26, 2013 10:29 am, edited 1 time in total.
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.

Image

Need hosting? Click this text to check out ICDSOFT

User avatar
Technology
Registered User
Posts: 6
Joined: Sun Mar 27, 2011 12:48 pm

Re: Text linker script

Post by Technology »

I tested it out works for me.
Last edited by Technology on Tue Feb 26, 2013 10:29 am, edited 1 time in total.

User avatar
Sniper_E
Sniper_E
Posts: 31
Joined: Sat Apr 13, 2013 2:35 pm
Flag: United States of America

Re: Text linker script

Post by Sniper_E »

I know this is a year old... you do know target="_blank" will not validate. Replace with onclick="window.open(this.href); return false;"
Code: Select all
         <td><a href="http://site_url" onclick="window.open(this.href); return false;"><strong>site_name</strong></a></td>
No is NEVER an Option and NEVER is the only Option when it comes to Giving Up!

Post Reply