GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Anyone use AXScripts? (https://gfy.com/showthread.php?t=693442)

HostGladiator 01-06-2007 01:28 PM

Anyone use AXScripts?
 
I installed it last night for doing hard link trades but i can't get it to make a table. It either puts all the links on 1 line horizontally or vertically. I'm trying to make a table that would look like this or similar:

L1 L2 L3
L4 L5 L6
L7 L8 L9
L10 L11 L12
L13 L14 L15


Any help would be appreciated. Oh, and here is the site.

Thanks

HostGladiator 01-06-2007 03:44 PM

bump for some help

jayeff 01-06-2007 03:53 PM

By default AXS produces an unordered list (although you can change that in 'edit templates'), which means you need to use CSS to create output which looks like tables. This a stripped down version to illustrate the principal for 4-column output:
Code:

ul {
width: 860px;
}
       
ul li {
float: left;
width: 215px;
}

To cater for IE6 and lower, you might have to knock a pixel or two off the li width so that columns x li width did not exactly equal ul width...

HostGladiator 01-06-2007 05:50 PM

Quote:

Originally Posted by jayeff (Post 11674637)
By default AXS produces an unordered list (although you can change that in 'edit templates'), which means you need to use CSS to create output which looks like tables. This a stripped down version to illustrate the principal for 4-column output:
Code:

ul {
width: 860px;
}
       
ul li {
float: left;
width: 215px;
}

To cater for IE6 and lower, you might have to knock a pixel or two off the li width so that columns x li width did not exactly equal ul width...

Your the man... Thanks.. :thumbsup


All times are GMT -7. The time now is 05:27 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123