Page 6 of 47 FirstFirst ... 4567816 ... LastLast
Results 51 to 60 of 462
  1. #51
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    ahhh...ok fixed the issue with the IE thanks for the tip. Now im having issues with another problem. I put this code in...
    PHP Code:
     <div id="navMain"> <ul class="back">
     <li> <?php

      
    echo zen_draw_form('categoriesSelect'zen_href_link(FILENAME_DEFAULT'''NONSSL'false), 'get');

      echo 
    zen_draw_pull_down_menu('cPath'zen_get_categories(array(array('id' => '''text' => Categories))), (isset($_GET['categories_id']) ? $_GET['categories_id'] : ''), 'onchange="this.form.submit();" size="1"') . zen_hide_session_id();

      echo 
    '</form>';

    ?></li>
    <li><?php

     $manufacturer_list_query 
    "select m.manufacturers_id, m.manufacturers_name
                                from " 
    TABLE_MANUFACTURERS " m
                                order by manufacturers_name"
    ;

     
    $manufacturer_list $db->Execute($manufacturer_list_query);

      if (
    $manufacturer_list->RecordCount()>0) {
        
    $number_of_rows $manufacturer_list->RecordCount()+1;

    // Display a list
        
    $manufacturer_list_array = array();
        if (
    $_GET['manufacturers_id'] == '' ) {
          
    $manufacturer_list_array[] = array('id' => '''text' => PULL_DOWN_ALL);
        } else {
          
    $manufacturer_list_array[] = array('id' => '''text' => PULL_DOWN_MANUFACTURERS);
        }

        while (!
    $manufacturer_list->EOF) {
          
    $manufacturer_list_name = ((strlen($manufacturer_list->fields['manufacturers_name']) > MAX_DISPLAY_MANUFACTURER_NAME_LEN) ? substr($manufacturer_list->fields['manufacturers_name'], 0MAX_DISPLAY_MANUFACTURER_NAME_LEN) . '..' $manufacturer_list->fields['manufacturers_name']);
          
    $manufacturer_list_array[] = array('id' => $manufacturer_list->fields['manufacturers_id'],
                                           
    'text' => $manufacturer_list_name);

          
    $manufacturer_list->MoveNext();
        }

        }

      echo 
    zen_draw_form('manufacturers'zen_href_link(FILENAME_DEFAULT'''NONSSL'false), 'get');
      echo 
    zen_draw_pull_down_menu('manufacturers_id'$manufacturer_list_array, (isset($_GET['manufacturers_id']) ? $_GET['manufacturers_id'] : ''), 'onchange="this.form.submit();" size="1"') . zen_hide_session_id();
      echo 
    zen_draw_hidden_field('main_page'FILENAME_DEFAULT) . '</form>';

    ?></li>
         <li> <?php require(DIR_WS_MODULES 'sideboxes/search_header.php'); ?></li>
      </ul>  </div>
    and this is what i get www.shopyoungway.com i can not figure out what is going on. i am using a preexisting div to work with this and it just keeps it broke up. what am i doin' wrong on this. by the way thanks for this template. I hate css cause its about irritaten. but i will get it. any help would be apreciated

  2. #52
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by shopyoungway
    ahhh...ok fixed the issue with the IE thanks for the tip. Now im having issues with another problem. I put this code in...

    and this is what i get www.shopyoungway.com i can not figure out what is going on. i am using a preexisting div to work with this and it just keeps it broke up. what am i doin' wrong on this. by the way thanks for this template. I hate css cause its about irritaten. but i will get it. any help would be apreciated
    Ok, first, I would put it in it's own div, like this:

    PHP Code:
      <div id="navCatForm"> <ul class="back">
     <li> <?php

      
    echo zen_draw_form('categoriesSelect'zen_href_link(FILENAME_DEFAULT'''NONSSL'false), 'get');

      echo 
    zen_draw_pull_down_menu('cPath'zen_get_categories(array(array('id' => '''text' => Categories))), (isset($_GET['categories_id']) ? $_GET['categories_id'] : ''), 'onchange="this.form.submit();" size="1"') . zen_hide_session_id();

      echo 
    '</form>';

    ?></li>
    <li><?php

     $manufacturer_list_query 
    "select m.manufacturers_id, m.manufacturers_name
                                from " 
    TABLE_MANUFACTURERS " m
                                order by manufacturers_name"
    ;

     
    $manufacturer_list $db->Execute($manufacturer_list_query);

      if (
    $manufacturer_list->RecordCount()>0) {
        
    $number_of_rows $manufacturer_list->RecordCount()+1;

    // Display a list
        
    $manufacturer_list_array = array();
        if (
    $_GET['manufacturers_id'] == '' ) {
          
    $manufacturer_list_array[] = array('id' => '''text' => PULL_DOWN_ALL);
        } else {
          
    $manufacturer_list_array[] = array('id' => '''text' => PULL_DOWN_MANUFACTURERS);
        }

        while (!
    $manufacturer_list->EOF) {
          
    $manufacturer_list_name = ((strlen($manufacturer_list->fields['manufacturers_name']) > MAX_DISPLAY_MANUFACTURER_NAME_LEN) ? substr($manufacturer_list->fields['manufacturers_name'], 0MAX_DISPLAY_MANUFACTURER_NAME_LEN) . '..' $manufacturer_list->fields['manufacturers_name']);
          
    $manufacturer_list_array[] = array('id' => $manufacturer_list->fields['manufacturers_id'],
                                           
    'text' => $manufacturer_list_name);

          
    $manufacturer_list->MoveNext();
        }

        }

      echo 
    zen_draw_form('manufacturers'zen_href_link(FILENAME_DEFAULT'''NONSSL'false), 'get');
      echo 
    zen_draw_pull_down_menu('manufacturers_id'$manufacturer_list_array, (isset($_GET['manufacturers_id']) ? $_GET['manufacturers_id'] : ''), 'onchange="this.form.submit();" size="1"') . zen_hide_session_id();
      echo 
    zen_draw_hidden_field('main_page'FILENAME_DEFAULT) . '</form>';

    ?></li>
         <li> <?php require(DIR_WS_MODULES 'sideboxes/search_header.php'); ?></li>
      </ul>  </div>
      <br class="clearBoth" />
    Then I'd give it it's own css styles:

    Code:
    #navCatForm ul li {display:inline}
    #navCatForm form {display:inline}
    That should do it!

  3. #53
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - available in download section

    Ok, I've uploaded a NEW NEW version, 1.5. This should BOTH be compatible with v1.3.5 AND fix the header in IE. the only file changed is stylesheet_new.css.

  4. #54
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    alright first off thanks jettrue this is a excellent template, second thanks for all the support ive found on this template.

  5. #55
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    also this works with Firefox but not IE it still breaks up

  6. #56
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    scratch that found a hack, and its good now. <div id="navCatForm" style="float: left; display: inline">

  7. #57
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    ok another one for ya. how can i change the text header for the search button with a actual button.

  8. #58
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    nevermind again. Im gonna quit asken till i get it all down lol

  9. #59
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by shopyoungway
    nevermind again. Im gonna quit asken till i get it all down lol
    Your questions seem to have moved beyond the scope of the Simple Zen template to more general customisation of Zen Cart. You might want to try giving them their own thread when they are not specifically about this template - they'll get a wider range of potential respondants that way.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  10. #60
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    well this is actually one for you i have tried to figure this out now for a day and a half but can't find what needs to be done. I am trying to carry the border around the my account area ( the light border around the whole thing and it sits between the title) i want to set that onto the categories menu but i can not get it at all. would apreciate any help.

    Thanks

 

 
Page 6 of 47 FirstFirst ... 4567816 ... LastLast

Similar Threads

  1. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 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