Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1
    Join Date
    Nov 2005
    Posts
    48
    Plugin Contributions
    0

    Prev - listing - next buttons

    Can someone please tell me how to spread the Prev - listing - next buttons, in my other shop i have a button on the left the middle and on the right. Not all together in the middle. Thank you all in advance

  2. #2
    Join Date
    May 2004
    Location
    Hong Kong
    Posts
    1,291
    Plugin Contributions
    1

    Default Re: Prev - listing - next buttons

    Find the section below in your stylesheet and adjust it for your taste.
    .navNextPrevList {
    margin: 0;
    padding: 0 0.8em 0 0.8em; /* adjust it */
    list-style-type: none;
    }
    .
    A New Starter again

  3. #3
    Join Date
    Nov 2005
    Posts
    48
    Plugin Contributions
    0

    Default Re: Prev - listing - next buttons

    Thank you very much. Would you also know how to change the sort order of all the things in the product info display? Thanks heaps again

  4. #4
    Join Date
    May 2004
    Location
    Hong Kong
    Posts
    1,291
    Plugin Contributions
    1

    Default Re: Prev - listing - next buttons

    If you mean you want to change the positions of the contents in the Product Info Page.
    And you don't mod it before.

    Copy the file below:
    /includes/templates/template_default/templates/tpl_product_info_display.php

    And save it to your override directory:
    /includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php

    And in the new copied file, you can move the sections around.
    And each section is already marked with:
    <!--bof SECTION Name-->
    .... SECTION CONTENTS ...
    <!--eof SECTION Name-->
    e.g.
    for the Product Name
    HTML Code:
    <!--bof Product Name-->
    <h1 id="productName" class="productGeneral"><?php echo $products_name; ?></h1>
    <!--eof Product Name-->
    .
    A New Starter again

  5. #5
    Join Date
    Nov 2005
    Posts
    48
    Plugin Contributions
    0

    Default Re: Prev - listing - next buttons

    thank you again. My a color and size attributes are too far apart. One is under the other. I thought there might be a way of how to bring them closer to each ohter. So that sizes is right above color?

  6. #6
    Join Date
    May 2004
    Location
    Hong Kong
    Posts
    1,291
    Plugin Contributions
    1

    Default Re: Prev - listing - next buttons

    For this kind of issue, provide a url to peek of will be better.

    .
    A New Starter again

  7. #7
    Join Date
    Nov 2005
    Posts
    48
    Plugin Contributions
    0

    Default Re: Prev - listing - next buttons

    http://flirtforhim.com/cart/index.ph...&products_id=1


    i want the size to be closer to the color, under or to the side it doesnt matter

    Thank you again

  8. #8
    Join Date
    May 2004
    Location
    Hong Kong
    Posts
    1,291
    Plugin Contributions
    1

    Default Re: Prev - listing - next buttons

    From page source of your site, it may be missing the <br class="clearBoth" /> in the section of
    <!--bof Product details list -->
    ,or in other sections.

    I had tried to insert the <br class="clearBoth" /> in the following and it seems improve the problem.

    <!--bof Add to Cart Box -->
    ...
    <!--eof Add to Cart Box-->

    <!--bof Product details list -->
    <!--eof Product details list -->

    <br class="clearBoth" />

    <!--bof Attributes Module -->
    ...
    </div><!--eof Attributes Module -->
    And if you had modified the file, you may check that if the modifications are correct made.
    Last edited by seethrou; 16 Sep 2006 at 08:14 AM. Reason: Add more info.
    A New Starter again

  9. #9
    Join Date
    Nov 2005
    Posts
    48
    Plugin Contributions
    0

    Default Re: Prev - listing - next buttons

    I am sorry where do i add that to? I am not really sure what page?

  10. #10
    Join Date
    May 2004
    Location
    Hong Kong
    Posts
    1,291
    Plugin Contributions
    1

    Default Re: Prev - listing - next buttons

    Still within the override file of above file tpl_product_info_display.php.

    In line no. 124,
    the original file already have the <br class="clearBoth" /> in there,
    it near the end of the section below (line no. 116 -128 in v1.3.5 ).
    May be it has been altered while modifications.

    PHP Code:
    <!--bof Product details list  -->
    <?php if ( (($flag_show_product_info_model == and $products_model != '') or ($flag_show_product_info_weight == and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == and $products_model !='') ? '<li>' TEXT_PRODUCT_MODEL $products_model '</li>' '') . "\n"?>
      <?php echo (($flag_show_product_info_weight == and $products_weight !=0) ? '<li>' TEXT_PRODUCT_WEIGHT .  $products_weight TEXT_PRODUCT_WEIGHT_UNIT '</li>'  '') . "\n"?>
      <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' $products_quantity TEXT_PRODUCT_QUANTITY '</li>'  '') . "\n"?>
      <?php echo (($flag_show_product_info_manufacturer == and !empty($manufacturers_name)) ? '<li>' TEXT_PRODUCT_MANUFACTURER $manufacturers_name '</li>' '') . "\n"?>
    </ul>
    <br class="clearBoth" />
    <?php
      
    }
    ?>
    <!--eof Product details list -->
    A New Starter again

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Prev/Listing/Next Buttons causing page layout problem
    By marlboat in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 5 Aug 2011, 05:21 AM
  2. Next prev and listing buttons
    By Eric24v in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 17 Aug 2010, 03:10 AM
  3. Prev/Product Listing/Next Buttons...
    By jenzi in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 19 Sep 2008, 08:16 AM
  4. Removing borders around PREV LISTING NEXT buttons
    By PoorRichard in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 4 Aug 2006, 11:38 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg