Results 1 to 10 of 740

Hybrid View

  1. #1
    Join Date
    Jun 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Thank you bramnick..

    Another question

    The text that tell the status of the auctioned item. It is right under the title of the item. I can't show it here because you would have to be logged in to view it.

    It tells how many bids, the current high bid, time remaining..

    Any hooo..

    How and where might I go to change the size of that text. It is presently almost microscopic

    Thanks and having a lot of fun with this mod!

  2. #2
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Auction Product Type

    Quote Originally Posted by taogem View Post
    How and where might I go to change the size of that text. It is presently almost microscopic
    You need to edit the css class or add one for the area you wish to change.

    The class 'main' is used throughout the auction page, tpl_product_auction_info_display.php if you add main to your style sheet and add a text size, that would work. you could add your own classes to do more.

    Code:
    .main {
       font-size: 12px ;
        }
    I've redesign mine to not use tables and setup my own style classes

    Glad to hear you got the email issue sorted out.
    Dave
    Always forward thinking... Lost my mind!

  3. #3
    Join Date
    Jun 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Hi Dave,

    Thanks for the response.

    I found this:

    /public_html/taogemst_myzencart/admin/includes/templates/template_default/templates/tpl_product_auction_info_display.php


    Here is an area that looks like it is what I am after:

    <tr>
    <td align="center" class="main"><?php echo TEXT_DATE_AVAILABLE .$days_left." days ".$hours_left." hours ".$minutes_left." minutes"; ?>
    <?php if (AUCTION_INFO_DISPLAY_PREVIOUS_BIDS_COUNT == '1') echo '&nbsp;-&nbsp;' . $previous_bids->RecordCount() . '&nbsp;' . AUCTION_BIDS; ?></td>
    </tr>


    If I am in the ball park, then just not sure where exactly to edit in the code you suggested.

  4. #4
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Auction Product Type

    Quote Originally Posted by taogem View Post
    Hi Dave,

    Thanks for the response.

    I found this:

    /public_html/taogemst_myzencart/admin/includes/templates/template_default/templates/tpl_product_auction_info_display.php


    Here is an area that looks like it is what I am after:

    <tr>
    <td align="center" class="main"><?php echo TEXT_DATE_AVAILABLE .$days_left." days ".$hours_left." hours ".$minutes_left." minutes"; ?>
    <?php if (AUCTION_INFO_DISPLAY_PREVIOUS_BIDS_COUNT == '1') echo '&nbsp;-&nbsp;' . $previous_bids->RecordCount() . '&nbsp;' . AUCTION_BIDS; ?></td>
    </tr>


    If I am in the ball park, then just not sure where exactly to edit in the code you suggested.
    Have to keep in mind that I'm not using tables and I'm also using a round corner wrapper, but this is how my code looks after editing class="main".

    <td class="productAuction biggerText"><?php echo TEXT_DATE_AVAILABLE .$days_left." days ".$hours_left." hours ".$minutes_left." minutes"; ?>
    <?php if (AUCTION_INFO_DISPLAY_PREVIOUS_BIDS_COUNT == '1') echo '&nbsp;-&nbsp;' . $previous_bids->RecordCount() . '&nbsp;' . AUCTION_BIDS; ?></td>
    Notice I replaced 'main' with two, 'productAuction biggerText'. The 'productAuction' replaced 'main' and 'biggerText' does just that... makes that text larger then normal. Here's what the class is in my '/includes/templates/CUSTOM/css/stylesheet.css' file..

    Code:
    .productAuction  {
        text-align: center;
        vertical-align: top;
        padding: 1.2em;
    
    .biggerText {
        font-size: 1.2em;
        }
    I replaced the div with td so not to be confusing. Once you add the classes then all you need do is change the style sheet to make changes to your page.

    Also,
    /includes/templates/template_default/templates/tpl_product_auction_info_display.php
    This is your default file structure, if you don't use the override, you'll have a had time upgrading your site later on.
    Dave
    Always forward thinking... Lost my mind!

  5. #5
    Join Date
    Jun 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Thanks Dave..

    I got it.... !

    I opted not to do the :

    .productAuction {
    text-align: center;
    vertical-align: top;
    padding: 1.2em;

    The text looks good right where it is now. Nice to know I can move it if need be though.

    Actually, this was a neat little practice CSS. I learned a little something by doing this.

    Any way...... Thanks a bunch..

  6. #6
    Join Date
    Jun 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Is there some way to tell who is bidding on what?

    I looked around but can't see anything. Just seems that since it is required to log in before bidding that there must be a record of some kind.

    Is there ?

  7. #7
    Join Date
    Mar 2008
    Posts
    63
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Quote Originally Posted by taogem View Post
    Is there some way to tell who is bidding on what?
    This is supposed to be a list of the account numbers of the previous bidders listed on the bid page.



    AHB

 

 

Similar Threads

  1. Auction Product type
    By Andreas1211 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 14 Aug 2014, 02:13 PM
  2. Auction Product Type: Can't add a product of the type.
    By sw0rdz in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 5 Sep 2009, 02:11 AM
  3. Auction Product Type
    By chinthana in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 18 Jun 2009, 10:33 AM
  4. Auction Mod. Product Type
    By wilt in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 15 Feb 2007, 07:35 AM

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