Page 24 of 27 FirstFirst ... 142223242526 ... LastLast
Results 231 to 240 of 263
  1. #231
    Join Date
    Feb 2009
    Posts
    31
    Plugin Contributions
    0

    Default Re: Lavender Template Support Thread

    Funny how you can look for ages, and then as soon as you post a question you find it :o)

    I found the following worked okay for me:

    includes>templates>template_default>templates>tpl_index_products_list.php

    Find:
    <div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES . $categories_image, '', CATEGORY_ICON_IMAGE_WIDTH, CATEGORY_ICON_IMAGE_HEIGHT); ?></div>

    Amend to:
    <!--
    includes>templates>template_default>templates>tpl_index_products_list.php
    <div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES . $categories_image, '', CATEGORY_ICON_IMAGE_WIDTH, CATEGORY_ICON_IMAGE_HEIGHT); ?></div>
    -->

  2. #232
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Lavender Template Support Thread

    Quote Originally Posted by andoverit
    Funny how you can look for ages, and then as soon as you post a question you find it :o)

    I found the following worked okay for me:

    includes>templates>template_default>templates>tpl_index_products_list.php
    Hopefully you are not editing the core files in template_default!!
    A copy should be saved to
    Code:
    includes>templates>lavender>templates>tpl_index_products_list.php
    https://www.zen-cart.com/tutorials/i...hp?article=230
    https://www.zen-cart.com/tutorials/i...hp?article=143
    https://www.zen-cart.com/tutorials/index.php?article=36
    Zen-Venom Get Bitten

  3. #233
    Join Date
    Feb 2009
    Posts
    31
    Plugin Contributions
    0

    Default Re: Lavender Template Support Thread

    Am having a big problem moving the site from the test site to the live one. As far as I can see I have done all I should have:

    1. Installed a clean version of ZenCart on the NEW site
    2. Moved the files from the OLD site to the NEW site except the 2 configure.php files
    3. Imported t
    he database from the OLD site to the NEW site

    It doesn't look right though. Any suggestions?

    I also need to go through the links in the dscriptions and update them from the old site (http://www.olddomain.com/testshop) to the new one (http://www.newdomain.com). Apart from manually going through, any ideas?

    Thanks Kobra

  4. #234
    Join Date
    Feb 2009
    Posts
    31
    Plugin Contributions
    0

    Default Re: Lavender Template Support Thread

    Sods Law - looks like it's sorted now. Will post exactly how I did for future reference for others later.

  5. #235
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Footer Always At Bottom Of Screen

    Hi Kobra

    I thought I would post this Footer Always At Bottom Of Screen code here first as it was built using your??? Lavender template and is based on the three column fluid design design of pmob.

    Please note that while this works for me, I cannot really explain how it works, or why it may fail for others.

    The following is the skeletal framework of
    \includes\templates\your_template\common\tpl_main_page.php.
    The key elements are the divs and their order of placement.

    Code:
    <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
    
    <!-- bof header -->
    <!-- eof header -->
    
    <div id="mainWrapper">
    <div id="clearheader"><!-- to clear header --></div>
    
    <div id="contentMainWrapper">
    
    <!-- bof navColumnOne -->
    <div id="navColumnOne" class="columnLeft" style="width: <?php echo COLUMN_WIDTH_LEFT; ?>">
    <div id="navColumnOneWrapper" style="width: <?php echo BOX_WIDTH_LEFT; ?>"><?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?></div>
    </div>
    <!-- eof navColumnOne -->
    
    <!-- bof navColumnTwo -->
    <div id="navColumnTwo" class="columnRight" style="width: <?php echo COLUMN_WIDTH_RIGHT; ?>">
    <div id="navColumnTwoWrapper" style="width: <?php echo BOX_WIDTH_RIGHT; ?>"><?php require(DIR_WS_MODULES . zen_get_module_directory('column_right.php')); ?></div>
    </div>
    <!-- end navColumnTwo -->
    
    <!-- bof  center content -->
    <!-- eof  center content  -->
    
    </div><!-- end contentMainWrapper -->
    
    <div id="clearfooter"><!-- to clear footer --></div>
    
    </div><!-- end mainWrapper -->
    
    <!-- bof footerWrapper -->
    <div id="footerWrapper">
    </div><!-- eof footerWrapper -->
    
    </body>

    The following is the key ingredient of
    \includes\templates\your_template\css\stylesheet.css

    Code:
    html, body {
    	height: 100%;
    	max-width: 1300px;
    	margin:0 auto;
    	}
    
    * html {height:100%;}
    
    body {
    	margin: 0;
    	padding: 0;
    	border: 0;
    	}
    
    #mainWrapper {
    	position:relative;
    	min-height: 100%;
    	margin-left:20%; /* adjustable */
    	margin-right:20%; /* adjustable */
    	}
    
    * html #mainwrapper { height:100%;} /* for mozilla as IE treats height as min-height anyway */
    
    #clearheader { /* needed to make room for headerWrapper */
    	height:140px;
    	}
    
    #headerWrapper {
    	position:absolute;
    	top:0px;
    	left:0px;
    	width:100%;
    	height:140px; /* same as clearHeader height */
    	}
    
    /* mac hide \*/
    * html #headerWrapper {height: 140px; he\ight: 1px} /* height needed for ie to force layout*/
    /* end hide */
    
    #contentMainWrapper {
    	position:relative;
    	width: 100%;
    	margin: 0 auto;
    	}
    
    .centerColumn { 
    	width: auto;
    	padding: 0 1em;
    	}
    
    /* mac hide\ */
    * html #centerColumn {height:1%;} /* combat IE's 3 pixel jog */
    /* end hide */
    
    #navColumnOne {
    	position:relative; /* ie needs this to show float */
    	float:left;
    	margin-left:-27%; /*  note negative sign, value same or slightly larger than Layout Settings COLUMN_WIDTH_LEFT */
    	margin-right:1px; /* makes element 1px smaller than width otherwise won't push footer down */
    	}
    
    #navColumnTwo {
    	position:relative; /* ie needs this to show float */
    	float:right;
    	margin-right:-27%; /* note negative sign, value same or slightly larger than Layout Settings COLUMN_WIDTH_RIGHT*/
    	margin-left:1px; /* makes element 1px smaller than width otherwise won't push footer down */
    
    	}
    
    #navColumnOneWrapper {
    	margin: 0 auto; /* required */
    	}
    
    #navColumnTwoWrapper {
    	margin: 0 auto; /* required */
    	}
    
    #clearfooter { /* needed to make room for footer */
    	clear:both;
    	height:130px; /* height of footer */
    	}
    
    #footerWrapper {
    	clear: both;
    	position: relative;
    	bottom: 0px;
    	height: 130px;   /* Height of the footer */
    	margin-top: -130px; /* negative value drags footer back into page */
    	width: 100%;
    	}
    
    * html #footerWrapper { /* only ie gets this style */
    	\height:130px; /* for ie5 */
    	he\ight:128px; /* for ie6 */
    	}

    Admin > Configuration > Layout Settings

    Code:
    Column Width - Left Boxes  	96%
    Column Width - Right Boxes 	96%
    
    Column Width - Left  	25%
    Column Width - Right 	25%
    Enjoy.
    Last edited by dw08gm; 4 May 2010 at 12:24 PM. Reason: spelling

  6. #236
    Join Date
    Oct 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Lavender Template Support Thread

    Hello from The Great Smokey Mountains of East Tennessee. USA

    My wife and I have a website called Groove-eMart,Com. We are using Zen Cart Ver. 1.3.9b and we are trying to use the lavender template.

    The Template is great, but we are having 2 problems.

    1. We can not get the logo.gif to scan the full width of the screen.
    I think this may have to do with the fact that I have the #mainWrapper width set to 100%. I don't like the narrow width of the default template. I have logo.gif set to 150 px high and 1000 px wide.

    Yes! I have searched the FAQ's and this Thread for the answer. But I am still confused.

    2 The second problem we are having is the purple bar just below the area were the categories go. The light purple bar that divides the header from the side boxes. We want the font in this bar to be white. How can I change that? Black on Purple is hard to read. I'm sure we need to change the css file to do that, but which line?

    You can get to our website athttp://www.groove-emart.com

    And while you are there please look around and see if you can offer us any other suggestions on how we can improve this website.

    Thank You in advance
    Budgee Bare
    Happy shopping!

  7. #237
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Lavender Template Support Thread

    Quote Originally Posted by Budgee Bare
    We can not get the logo.gif to scan the full width of the screen.
    I think this may have to do with the fact that I have the #mainWrapper width set to 100%. I don't like the narrow width of the default template. I have logo.gif set to 150 px high and 1000 px wide.
    The template as delivered has the mainWrapper set to 100% so as to be a "Fluid" layout
    You can optionally set it to be the same as your image - 1000px

    OR this might assist by adding this line to the #logo div
    Try it and see

    Code:
    #logo {
    	margin: 0em;
            background-color: #ffffff;
    /*	float: left; */
    	text-align: center;
    	padding-top: 0px;
    	}
    Zen-Venom Get Bitten

  8. #238
    Join Date
    Jun 2010
    Posts
    56
    Plugin Contributions
    0

    Default Re: Lavender Template Support Thread

    I like this great template!

    I am trying to make some changes on the product listing page. By default layout, there is no line separate each product, it is kind of crowd. How can I set a line to separate them? this same apply to search result page too.

    thanks.

  9. #239
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Lavender Template Support Thread

    Need a link to your site....

    Inset ONE space to beak link as in

    http: //www.zen-cart.com/
    Zen-Venom Get Bitten

  10. #240
    Join Date
    Jun 2010
    Posts
    56
    Plugin Contributions
    0

    Default Re: Lavender Template Support Thread

    need some help to make minor css changes:

    1). the link to "home" in the top left corner, I want to change the color of the font when user mouse hoover over it, which css class do I need to change?

    2). in the product page, there are three buttons: Previous, Product Listing, Next. how can I make it change the font color when user mouse hoover over the button?

    Thanks!

 

 
Page 24 of 27 FirstFirst ... 142223242526 ... LastLast

Similar Threads

  1. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  2. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  3. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  4. Watermelon Template Support Thread
    By LissaE in forum Addon Templates
    Replies: 22
    Last Post: 14 Oct 2011, 04:03 AM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 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