need some html help with AUTOGALLERY SQL

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • horvy
    Confirmed User
    • Jan 2007
    • 811

    #1

    need some html help with AUTOGALLERY SQL

    trying to get about 6 or 7 images going across in a row then starting a new row but it doesnt seem to work.... here are the parameters...


    <table align="center" width="800">

    <&#37;CATEGORIES
    AMOUNT All
    HTML <tr><td align=center><a href="##Page##"><img src=http://www.solo-girlz.com/##Name##.jpg border=0 width=90 height=120><br>##Name##</a></td>
    ORDER Name
    %>
    </tr></table>




    or also if i do this below, then it just starts over with the first name again....

    <table align="center" width="800"><tr>

    <%CATEGORIES
    AMOUNT 6
    HTML <td align=center><a href="##Page##"><img src=http://www.solo-girlz.com/##Name##.jpg border=0 width=90 height=120><br>##Name##</a></td>
    ORDER Name
    %>
    </tr></table>





    by the way the site is solo-girlz.com
    Last edited by horvy; 10-08-2007, 07:29 PM.
    I like Boobs.
  • horvy
    Confirmed User
    • Jan 2007
    • 811

    #2
    http://www.solo-girlz.com
    I like Boobs.

    Comment

    • BigBen
      Confirmed User
      • Nov 2004
      • 2299

      #3
      Take a look at the examples that come with it... should be able to get it working in no time.

      Comment

      • horvy
        Confirmed User
        • Jan 2007
        • 811

        #4
        well since the site is pretty much custom made there is no "category" examples. I am good with autogallery SQL, been using it for about 2 years. Im just stumped here.
        I like Boobs.

        Comment

        • horvy
          Confirmed User
          • Jan 2007
          • 811

          #5
          p.s. ill pay someone who can help
          I like Boobs.

          Comment

          • fusionx
            Confirmed User
            • Nov 2003
            • 4618

            #6
            Originally posted by horvy
            p.s. ill pay someone who can help
            Hit me up tomorrow and I'll help you out. You need an INSERT statement to add the row tags and you should be using the GALLERIES directive, and some other things.. something more like:

            Code:
            <br />
            <table width="600"  border="0" align="center"  class="thumbtable" cellpadding="3" cellspacing="3">
            <tr valign="top">
            <td colspan="4" class="header">Nude Art Hall Of Fame</td>
            </tr>
            
            <tr>
            <%GALLERIES
            HASTHUMB 1
            TYPE Permanent
            FORMAT Any
            CATEGORY Mixed
            AMOUNT 48
            SPONSOR Any
            HTML Thumb2
            GLOBALDUPES False
            PAGEDUPES False
            ORDER (Clicks/Build_Counter) DESC
            REORDER (Clicks/Build_Counter) DESC
            GETNEW False
            FILL False
            DESCREQ False
            MAXAGE 3
            
            
            
            INSERT
            {
                LOCATION +4
                HTML </tr><tr valign="top">
            }
            %>
            </tr>
            </table>

            Comment

            • fusionx
              Confirmed User
              • Nov 2003
              • 4618

              #7
              CATEGORIES simply lists the categories you have defined, not image gallery thumbs

              Comment

              • horvy
                Confirmed User
                • Jan 2007
                • 811

                #8
                Hey, but i dont want galleries to show up. I want categories to show up with galleries on each category page. Anyhoo, ill hit you up
                Last edited by horvy; 10-08-2007, 08:36 PM.
                I like Boobs.

                Comment

                • fusionx
                  Confirmed User
                  • Nov 2003
                  • 4618

                  #9
                  Sorry - misunderstood what you wanted.

                  Was fun working with you on ICQ - here's the final code in case anyone else wants it.

                  Code:
                  <table width="800" align="center">
                  <tr>
                  <&#37;CATEGORIES
                  AMOUNT All
                  HTML <td><a href="##Page##"><img src="images/##Name##.jpg">##Name##</a></td>
                  ORDER Name
                   
                  INSERT
                  {
                      LOCATION +4
                      HTML </tr><tr>
                  }
                  %>
                  </tr>
                  </table>

                  Comment

                  Working...