Page 7 of 63 FirstFirst ... 567891757 ... LastLast
Results 61 to 70 of 623
  1. #61
    Join Date
    Aug 2008
    Location
    MEDFORD OREGON
    Posts
    17
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Hello. I Love your design. I am working on a demo install @ http://realestatesignstore.info/zenc...b82ea25039be99. As you can see at the link the CATEGORIES images are to large! How do I make them smaller? It's so far the only problem I have with your design. I want to install it on my live site @ www.realestatesignstore.com ......... It will be great for my site....

    Thanks in Advance...

    Michael Patti

    michaelpattisr######################
    Last edited by michaelpattisr; 19 May 2014 at 11:43 PM.

  2. #62
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by michaelpattisr View Post
    Hello. I Love your design. I am working on a demo install @ http://realestatesignstore.info/zenc...=index&cPath=1 . As you can see at the link the CATEGORIES images are to large! How do I make them smaller? It's so far the only problem I have with your design. I want to install it on my live site @ www.realestatesignstore.com ... It will be great for my site....

    Thanks in Advance...

    Michael Patti

    michaelpattisr######################
    It's been awhile since I've worked with this template. But this demo page gives the width of the image at 978px / free height.

    http://www.numinix.com/demos/tableau...index&cPath=53

    Can you make your category image about the size as the image on the demo page?

    I don't think that the problem is the template as much as it is your image dimensions.
    Steve
    prommart.com

  3. #63
    Join Date
    May 2014
    Location
    Singapore, Singapore
    Posts
    9
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by michaelpattisr View Post
    Hello. I Love your design. I am working on a demo install @ http://realestatesignstore.info/zenc...=index&cPath=1 . As you can see at the link the CATEGORIES images are to large! How do I make them smaller? It's so far the only problem I have with your design. I want to install it on my live site @ www.realestatesignstore.com ... It will be great for my site....

    Thanks in Advance...

    Michael Patti

    michaelpattisr######################
    Go to YOUR_CATALOG/includes/templates/tableau/css/stylesheet_product_listing.css
    Look for:

    /* Product Listing Image */
    #categoryImgListing {
    text-align: center;
    margin: 36px 0 15px;
    }

    #categoryImgListing img {
    height: auto;
    max-width: 978px;
    width: 100%;
    }

    You can change the max-width to any pixel you want.

  4. #64
    Join Date
    May 2014
    Location
    Singapore, Singapore
    Posts
    9
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by satello View Post
    Oh yes, please send details, i'm about to go live in few days.....

    Cheers
    Sorry for the late reply. You can get the updated files at simux.org/zenuploads/account_history_mod.zip
    Please make a backup of your previous files in the folder and copy the contents of the zip file to YOUR_CATALOG/includes/templates/tableau/templates/ to replace the files inside.

  5. #65

    Default Re: Tableau Responsive Theme - Support Thread

    If anyone wants to see a live version of this template that is now in use please visit www.frome-model-centre.com

    please let me know if you find any bugs or errors

    I've posted a fix for the tpl_contact_us_default.php wasn't send messages.

    PHP Code:
    <?php
    /**
     * Page Template
     *
     * Loaded automatically by index.php?main_page=contact_us.<br />
     * Displays contact us page form.
     *
     * @package templateSystem
     * @copyright Copyright 2003-2012 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version GIT: $Id: Author: DrByte  Sun Aug 19 09:47:29 2012 -0400 Modified in v1.5.1 $
     */
    ?>
    <div class="centerColumn" id="contactUsDefault">

    <h1 class="back"><?php echo HEADING_TITLE;?></h1>
    <div class="alert forward" id="required-information"><?php echo FORM_REQUIRED_INFORMATION?></div>
    <?php echo zen_draw_form('contact_us'zen_href_link(FILENAME_CONTACT_US'action=send')); ?>


    <?php
      
    if (isset($_GET['action']) && ($_GET['action'] == 'success')) {
    ?>

    <div class="mainContent success"><?php echo TEXT_SUCCESS?></div>

    <div class="buttonRow"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACKBUTTON_BACK_ALT) . '</a>'?></div>

    <?php
      
    } else {
    ?>

    <!--
    <?php if (DEFINE_CONTACT_US_STATUS >= '1' and DEFINE_CONTACT_US_STATUS <= '2') { ?>
    <div id="contactUsNoticeContent" class="content">
    <?php
    /**
     * require html_define for the contact_us page
     */
      
    require($define_page);
    ?>
    </div>
    <?php ?>
    -->

    <?php if ($messageStack->size('contact') > 0) echo $messageStack->output('contact'); ?>


    <br class="clearBoth" />

    <?php
    // show dropdown if set
        
    if (CONTACT_US_LIST !=''){
    ?>
    <label class="inputLabel" for="send-to"><?php echo SEND_TO_TEXT?></label>
    <?php echo zen_draw_pull_down_menu('send_to',  $send_to_array0'id="send-to"') . '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?>
    <br class="clearBoth" />
    <?php
        
    }
    ?>
    <div id="contact-form-wrapper" class="back">

        <div id="contact-col-left" class="back">

            <label class="inputLabel" for="contactname"><?php echo ENTRY_NAME?> <?php echo '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_input_field('contactname'$name' size="40" id="contactname"'); ?>
            
            <label class="inputLabel" for="email-address"><?php echo ENTRY_EMAIL?> <?php echo '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_input_field('email', ($email_address), ' size="40" id="email-address"'); ?>
            
            <label class="inputLabel" for="subject" ><?php echo ENTRY_SUBJECT?> <?php echo '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_input_field('subject', ($email_subject), ' size="40" id="subject"'); ?>
            
        </div><!--EOF #contact-col-left-->
        
        <div id="contact-col-right" class="forward">
        
            <label for="enquiry"><?php echo ENTRY_ENQUIRY ' <span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_textarea_field('enquiry''30''7'$enquiry'id="enquiry"'); ?>
            
            <?php echo zen_draw_input_field('should_be_empty'''' size="40" id="CUAS" style="visibility:hidden; display:none;" autocomplete="off"'); ?>
        </div><!--EOF #contact-col-right-->
            
    </fieldset>
        
        <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SENDBUTTON_SEND_ALT); ?></div>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACKBUTTON_BACK_ALT) . '</a>'?></div>
        
        <div class="clearBoth"></div>
    </div><!--EOF #contact-form-wrapper-->

    <?php
      
    }
    ?>

    <div id="store-details-wrapper" class="forward">
        <div class="back contact-icon" id="phone-icon">&#xe000;</div>
        <div class="back contact-info">
            <strong>Toll Free:</strong> 1-877-880-TILE (8453)<br />
            <strong>Local:</strong> 323-731-8453
        </div>
        <div class="clearBoth"></div>
        <div class="back contact-icon" id="email-icon">&#xe001;</div>
        <div class="back contact-info" id="email-info">
            [email protected]
        </div>
        <div class="clearBoth"></div>
        <div class="back contact-icon" id="business-icon">&#xe002;</div>
        <?php if (CONTACT_US_STORE_NAME_ADDRESS== '1') { ?>
        <address class="back contact-info"><?php echo nl2br(STORE_NAME_ADDRESS); ?></address>
        <?php ?>
        <div class="clearBoth"></div>

    </div><!--EOF #store-details-wrapper-->

    </form>


    </div>
    A 21 year old Messing around with e-commerce.

    www.frome-model-centre.com

  6. #66
    Join Date
    Jan 2014
    Posts
    62
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    I would make clikable the banners, as there is a button with "shop now" but it doesn't take anywhere.

  7. #67
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by lukeengland12 View Post
    If anyone wants to see a live version of this template that is now in use please visit www.frome-model-centre.com

    please let me know if you find any bugs or errors
    Very nice! Homepage did take quite awhile to load for me.
    Steve
    prommart.com

  8. #68
    Join Date
    May 2014
    Location
    Singapore, Singapore
    Posts
    9
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by lukeengland12 View Post
    If anyone wants to see a live version of this template that is now in use please visit www.frome-model-centre.com

    please let me know if you find any bugs or errors

    I've posted a fix for the tpl_contact_us_default.php wasn't send messages.

    PHP Code:
    <?php
    /**
     * Page Template
     *
     * Loaded automatically by index.php?main_page=contact_us.<br />
     * Displays contact us page form.
     *
     * @package templateSystem
     * @copyright Copyright 2003-2012 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version GIT: $Id: Author: DrByte  Sun Aug 19 09:47:29 2012 -0400 Modified in v1.5.1 $
     */
    ?>
    <div class="centerColumn" id="contactUsDefault">

    <h1 class="back"><?php echo HEADING_TITLE;?></h1>
    <div class="alert forward" id="required-information"><?php echo FORM_REQUIRED_INFORMATION?></div>
    <?php echo zen_draw_form('contact_us'zen_href_link(FILENAME_CONTACT_US'action=send')); ?>


    <?php
      
    if (isset($_GET['action']) && ($_GET['action'] == 'success')) {
    ?>

    <div class="mainContent success"><?php echo TEXT_SUCCESS?></div>

    <div class="buttonRow"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACKBUTTON_BACK_ALT) . '</a>'?></div>

    <?php
      
    } else {
    ?>

    <!--
    <?php if (DEFINE_CONTACT_US_STATUS >= '1' and DEFINE_CONTACT_US_STATUS <= '2') { ?>
    <div id="contactUsNoticeContent" class="content">
    <?php
    /**
     * require html_define for the contact_us page
     */
      
    require($define_page);
    ?>
    </div>
    <?php ?>
    -->

    <?php if ($messageStack->size('contact') > 0) echo $messageStack->output('contact'); ?>


    <br class="clearBoth" />

    <?php
    // show dropdown if set
        
    if (CONTACT_US_LIST !=''){
    ?>
    <label class="inputLabel" for="send-to"><?php echo SEND_TO_TEXT?></label>
    <?php echo zen_draw_pull_down_menu('send_to',  $send_to_array0'id="send-to"') . '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?>
    <br class="clearBoth" />
    <?php
        
    }
    ?>
    <div id="contact-form-wrapper" class="back">

        <div id="contact-col-left" class="back">

            <label class="inputLabel" for="contactname"><?php echo ENTRY_NAME?> <?php echo '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_input_field('contactname'$name' size="40" id="contactname"'); ?>
            
            <label class="inputLabel" for="email-address"><?php echo ENTRY_EMAIL?> <?php echo '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_input_field('email', ($email_address), ' size="40" id="email-address"'); ?>
            
            <label class="inputLabel" for="subject" ><?php echo ENTRY_SUBJECT?> <?php echo '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_input_field('subject', ($email_subject), ' size="40" id="subject"'); ?>
            
        </div><!--EOF #contact-col-left-->
        
        <div id="contact-col-right" class="forward">
        
            <label for="enquiry"><?php echo ENTRY_ENQUIRY ' <span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_textarea_field('enquiry''30''7'$enquiry'id="enquiry"'); ?>
            
            <?php echo zen_draw_input_field('should_be_empty'''' size="40" id="CUAS" style="visibility:hidden; display:none;" autocomplete="off"'); ?>
        </div><!--EOF #contact-col-right-->
            
    </fieldset>
        
        <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SENDBUTTON_SEND_ALT); ?></div>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACKBUTTON_BACK_ALT) . '</a>'?></div>
        
        <div class="clearBoth"></div>
    </div><!--EOF #contact-form-wrapper-->

    <?php
      
    }
    ?>

    <div id="store-details-wrapper" class="forward">
        <div class="back contact-icon" id="phone-icon">&#xe000;</div>
        <div class="back contact-info">
            <strong>Toll Free:</strong> 1-877-880-TILE (8453)<br />
            <strong>Local:</strong> 323-731-8453
        </div>
        <div class="clearBoth"></div>
        <div class="back contact-icon" id="email-icon">&#xe001;</div>
        <div class="back contact-info" id="email-info">
            [email protected]
        </div>
        <div class="clearBoth"></div>
        <div class="back contact-icon" id="business-icon">&#xe002;</div>
        <?php if (CONTACT_US_STORE_NAME_ADDRESS== '1') { ?>
        <address class="back contact-info"><?php echo nl2br(STORE_NAME_ADDRESS); ?></address>
        <?php ?>
        <div class="clearBoth"></div>

    </div><!--EOF #store-details-wrapper-->

    </form>


    </div>
    How did you configure your website to load so fast? My main page loads in like 5 seconds simux.org/store

  9. #69
    Join Date
    May 2012
    Posts
    7
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    After I adding" Categories " , something wrong happened. -- " Refine your results
    WARNING: An Error occurred, please refresh the page and try again."

    BTW , the installation process was fine and I don't see anything was missed. Could you please , someone could help me on this ?

  10. #70
    Join Date
    May 2012
    Posts
    7
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    for now , I guess NO , still have many bugs need to fixed .

 

 
Page 7 of 63 FirstFirst ... 567891757 ... LastLast

Similar Threads

  1. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Templates, Stylesheets, Page Layout
    Replies: 1071
    Last Post: 4 Feb 2024, 04:28 PM
  2. v155 Support Thread - Responsive Color Changes for 155
    By dbltoe in forum Templates, Stylesheets, Page Layout
    Replies: 99
    Last Post: 1 Oct 2021, 12:31 PM
  3. v155 Tableau Theme configuration not working.
    By tunes in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 22 Mar 2017, 06:53 PM
  4. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Addon Templates
    Replies: 0
    Last Post: 17 Mar 2016, 12:30 AM
  5. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR