Anyone use AXScripts?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • HostGladiator
    Confirmed User
    • May 2005
    • 816

    #1

    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- For All Your Hosting Needs!
    Linux Virtual Hosting, Budget VPS, Premium VPS and Dedicated Server Hosting
    24/7/365 Support- [email protected]
  • HostGladiator
    Confirmed User
    • May 2005
    • 816

    #2
    bump for some help
    HostGladiator- For All Your Hosting Needs!
    Linux Virtual Hosting, Budget VPS, Premium VPS and Dedicated Server Hosting
    24/7/365 Support- [email protected]

    Comment

    • jayeff
      Confirmed User
      • May 2001
      • 2944

      #3
      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...

      Comment

      • HostGladiator
        Confirmed User
        • May 2005
        • 816

        #4
        Originally posted by jayeff
        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..
        HostGladiator- For All Your Hosting Needs!
        Linux Virtual Hosting, Budget VPS, Premium VPS and Dedicated Server Hosting
        24/7/365 Support- [email protected]

        Comment

        Working...