Page 176 of 326 FirstFirst ... 76126166174175176177178186226276 ... LastLast
Results 1,751 to 1,760 of 3251
  1. #1751
    Join Date
    Feb 2008
    Location
    Inside my head.
    Posts
    55
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by mushtaq View Post
    I have done that before, but it didn't make any difference, I have changed it again now to include full path, but still no good
    Mushtaq,

    I have implemented that script in the header of a website that I broke something else in - it works fine when you give the image path the full path to where the actual image is.

    Where I placed the code was in:
    includes/templates/MY_TEMPLATE_FOLDER/common/tpl_header.php. Then I took the code and placed it right inside the div tag: <div id="taglineWrapper"> javascript code </div>

    If you would like to see it working you can see it at: http://www.bk-clothing.com/store/

    I hope you can get it figured out!
    </Seth>

  2. #1752
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    remove left/right columns on shopping cart page...

    i used this code in the tpl_main_page to remove the left/right columns from the shopping cart page, but there is still a blank space the width of the columns on the page. how do i expand the center column to fill the page?

    thanks

    Code:
    //add page names that you wantto disable left and right columns 
       $center_column_only = array('login','account',''checkout_success','checkout_shipping','checkout_payment','checkout_confirmation','shopping_cart'); 
       // the following IF statement can be duplicated/modified as needed to set additional flags 
         if (in_array($current_page_base,$center_column_only) ) { 
              $flag_disable_right = true; 
              $flag_disable_left = true; 
         }

  3. #1753
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    follow up to previous post. i found the answer... i created a css file for that page and removed the side column space.

    now... my next question is how to display the cart contents table side by side with the shipping estimator box?

    i guess i could do it with a table? but how would i do that with pure css?

    thanks.

  4. #1754
    Join Date
    Jul 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by sethererm View Post
    Mushtaq

    Have you tried giving the full path to the image instead of the relative path?

    for instance -
    Code:
    leftrightslide[4]='<a href="http://"><img src="http://www.shishagenie.com/images/mellon.jpg" border=1></a>'
    or wherever the image is located on the server with the full URL to the image.
    I have put the same paths as here http://www.shishagenie.com/test.htm this page works, but just having problems adding the script to the header, any ideas where about in the page it should be inserted? I have tried moving it around on various places but same result.

  5. #1755
    Join Date
    Feb 2008
    Location
    Inside my head.
    Posts
    55
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by mushtaq View Post
    I have put the same paths as here http://www.shishagenie.com/test.htm this page works, but just having problems adding the script to the header, any ideas where about in the page it should be inserted? I have tried moving it around on various places but same result.
    You would place your javascript in the includes/templates/cherry_zen/common/tpl_header.php file.

    You would then need to place the full script RIGHT after the tag <div id="taglineWrapper">. So it would look something like this:
    Code:
    <div id="taglineWrapper">
    <script type="text/javascript">
    
    /***********************************************
    * Conveyor belt slideshow script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    ***********************************************/
    
    
    //Specify the slider's width (in pixels)
    var sliderwidth="760px"
    //Specify the slider's height
    var sliderheight="150px"
    //Specify the slider's slide speed (larger is faster 1-10)
    var slidespeed=2
    //configure background color:
    slidebgcolor="#EAEAEA"
    
    //Specify the slider's images
    var leftrightslide=new Array()
    var finalslide=''
    leftrightslide[0]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook1.gif" border=1></a>'
    leftrightslide[1]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook2.gif" border=1></a>'
    leftrightslide[2]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook3.gif" border=1></a>'
    leftrightslide[3]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook4.gif" border=1></a>'
    leftrightslide[4]='<a href="http://"><img src="http://www.shishagenie.com/images/dynamicbook5.gif" border=1></a>'
    
    //Specify gap between each image (use HTML):
    var imagegap=" "
    
    //Specify pixels gap between each slideshow rotation (use integer):
    var slideshowgap=5
    
    
    ////NO NEED TO EDIT BELOW THIS LINE////////////
    
    var copyspeed=slidespeed
    leftrightslide='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
    var iedom=document.all||document.getElementById
    if (iedom)
    document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+leftrightslide+'</span>')
    var actualwidth=''
    var cross_slide, ns_slide
    
    function fillup(){
    if (iedom){
    cross_slide=document.getElementById? document.getElementById("test2") : document.all.test2
    cross_slide2=document.getElementById? document.getElementById("test3") : document.all.test3
    cross_slide.innerHTML=cross_slide2.innerHTML=leftrightslide
    actualwidth=document.all? cross_slide.offsetWidth : document.getElementById("temp").offsetWidth
    cross_slide2.style.left=actualwidth+slideshowgap+"px"
    }
    else if (document.layers){
    ns_slide=document.ns_slidemenu.document.ns_slidemenu2
    ns_slide2=document.ns_slidemenu.document.ns_slidemenu3
    ns_slide.document.write(leftrightslide)
    ns_slide.document.close()
    actualwidth=ns_slide.document.width
    ns_slide2.left=actualwidth+slideshowgap
    ns_slide2.document.write(leftrightslide)
    ns_slide2.document.close()
    }
    lefttime=setInterval("slideleft()",30)
    }
    window.onload=fillup
    
    function slideleft(){
    if (iedom){
    if (parseInt(cross_slide.style.left)>(actualwidth*(-1)+8))
    cross_slide.style.left=parseInt(cross_slide.style.left)-copyspeed+"px"
    else
    cross_slide.style.left=parseInt(cross_slide2.style.left)+actualwidth+slideshowgap+"px"
    
    if (parseInt(cross_slide2.style.left)>(actualwidth*(-1)+8))
    cross_slide2.style.left=parseInt(cross_slide2.style.left)-copyspeed+"px"
    else
    cross_slide2.style.left=parseInt(cross_slide.style.left)+actualwidth+slideshowgap+"px"
    
    }
    else if (document.layers){
    if (ns_slide.left>(actualwidth*(-1)+8))
    ns_slide.left-=copyspeed
    else
    ns_slide.left=ns_slide2.left+actualwidth+slideshowgap
    
    if (ns_slide2.left>(actualwidth*(-1)+8))
    ns_slide2.left-=copyspeed
    else
    ns_slide2.left=ns_slide.left+actualwidth+slideshowgap
    }
    }
    
    
    if (iedom||document.layers){
    with (document){
    document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
    if (iedom){
    write('<div style="position:relative;width:'+sliderwidth+';height:'+sliderheight+';overflow:hidden">')
    write('<div style="position:absolute;width:'+sliderwidth+';height:'+sliderheight+';background-color:'+slidebgcolor+'" onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed">')
    write('<div id="test2" style="position:absolute;left:0px;top:0px"></div>')
    write('<div id="test3" style="position:absolute;left:-1000px;top:0px"></div>')
    write('</div></div>')
    }
    else if (document.layers){
    write('<ilayer width='+sliderwidth+' height='+sliderheight+' name="ns_slidemenu" bgColor='+slidebgcolor+'>')
    write('<layer name="ns_slidemenu2" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
    write('<layer name="ns_slidemenu3" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
    write('</ilayer>')
    }
    document.write('</td></table>')
    }
    }
    </script>
    <?php
                  if (HEADER_SALES_TEXT != '') {
    ?>
              <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
              <?php
                  }
    ?>
              <?php
                  if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
                    if ($banner->RecordCount() > 0) {
    ?>
              <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
              <?php
                    }
                  }
    ?>
            </div>
            <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
          </div>
    The only thing is that you need to make sure your pictures are linked to the ACTUAL location of the picture.

    Hopefully that will help some. I'll check back every once in a while to see if you have any other issues - hopefully this will answer it though.
    </Seth>

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by gsdcypher View Post
    remove left/right columns on shopping cart page...

    i used this code in the tpl_main_page to remove the left/right columns from the shopping cart page, but there is still a blank space the width of the columns on the page. how do i expand the center column to fill the page?

    thanks

    Code:
    //add page names that you wantto disable left and right columns 
       $center_column_only = array('login','account',''checkout_success','checkout_shipping','checkout_payment','checkout_confirmation','shopping_cart'); 
       // the following IF statement can be duplicated/modified as needed to set additional flags 
         if (in_array($current_page_base,$center_column_only) ) { 
              $flag_disable_right = true; 
              $flag_disable_left = true; 
         }
    I would remove that, and use css (from my new readme for 1.7):
    If you want NO sideboxes on your home page, add this to your css:

    Code:
    #indexHomeBody #navColumnTwo, #indexHomeBody #navColumnOne {display:none;}
    #indexHomeBody .outer {padding-right:0;padding-left:20px;}
    #indexHomeBody #contentMainWrapper, #indexHomeBody #contentMainWrapperb {background-image:none;}
    Of course changing #indexHomeBody to the page ID of the shopping cart page (#shoppingcartBody)

  7. #1757
    Join Date
    Jun 2006
    Posts
    128
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi Jade, I absolutely LOVE your template but I'm pulling my hair out about something...

    My partner and I followed your instructions on how to remove the right column and then also how to widen the left column.

    Everything looked wonderful and we customized the rest of the stylesheet to our heart's content. We were all done, or so it seemed, when we discovered a problem with the login page. The left column was gone and we can't seem, for the life of us, to get it back no matter what we try.

    The only other mod we have installed is the Tabbed Products Pro and while it overwrote the tpl_product_info_display.php file, that should have no bearing on the login page, should it? At any rate, I replaced that file with yours from the template and it didn't change anything. There have been no other rewrites.

    We reinstalled the original style sheet because we thought it must have been an error we made somewhere in the css. We even turned the right column back on and set the original column widths. Everything is as close to stock as I can get it. The only thing is our bg image for the columns is still in place, and obviously too wide (it's set for the width we will eventually have the left column)

    Can you please take a look at the login page and let me know what the problem could be??

    BTW, I switched to any other installed template and it works fine, with columns showing. Only Cherry Zen is not working.

    In Firefox it looks bad, login section overlaps left column. In IE7 the content starts in the right column area and the left column and center are blank.

    http://designmycart.com/shop/index.php?main_page=login

    If this has been asked and answered already, my apologies. I have searched and searched but there's 177 pages to this thread and I can't read them all. I have 2 businesses and a family to care for so time is short.

    Thanks in advance!
    Jeri

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by gsdcypher View Post
    follow up to previous post. i found the answer... i created a css file for that page and removed the side column space.

    now... my next question is how to display the cart contents table side by side with the shipping estimator box?

    i guess i could do it with a table? but how would i do that with pure css?

    thanks.
    You can't do it with pure css, you'd need to add a div around each, use css to make them both 45% wide or so, and float them side by side. I think you'd need a div containing both of them as well. Then you could do it with pure css.

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by signs View Post
    Hi Jade, I absolutely LOVE your template but I'm pulling my hair out about something...

    My partner and I followed your instructions on how to remove the right column and then also how to widen the left column.

    Everything looked wonderful and we customized the rest of the stylesheet to our heart's content. We were all done, or so it seemed, when we discovered a problem with the login page. The left column was gone and we can't seem, for the life of us, to get it back no matter what we try.

    The only other mod we have installed is the Tabbed Products Pro and while it overwrote the tpl_product_info_display.php file, that should have no bearing on the login page, should it? At any rate, I replaced that file with yours from the template and it didn't change anything. There have been no other rewrites.

    We reinstalled the original style sheet because we thought it must have been an error we made somewhere in the css. We even turned the right column back on and set the original column widths. Everything is as close to stock as I can get it. The only thing is our bg image for the columns is still in place, and obviously too wide (it's set for the width we will eventually have the left column)

    Can you please take a look at the login page and let me know what the problem could be??

    BTW, I switched to any other installed template and it works fine, with columns showing. Only Cherry Zen is not working.

    In Firefox it looks bad, login section overlaps left column. In IE7 the content starts in the right column area and the left column and center are blank.

    http://designmycart.com/shop/index.php?main_page=login

    If this has been asked and answered already, my apologies. I have searched and searched but there's 177 pages to this thread and I can't read them all. I have 2 businesses and a family to care for so time is short.
    Thanks in advance!
    Jeri
    Yeah, the answers in the thread, maybe three or so pages back, but all you have to do is open the stylesheet and remove the last section starting with #loginBody it was a chunk of code I forgot to remove. As a future tip there's a search feature at the top of the thread so you can search in this thread only.

  10. #1760
    Join Date
    Jun 2006
    Posts
    128
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Yeah, the answers in the thread, maybe three or so pages back, but all you have to do is open the stylesheet and remove the last section starting with #loginBody it was a chunk of code I forgot to remove. As a future tip there's a search feature at the top of the thread so you can search in this thread only.
    Thanks, Jade, I'll give that a try. I'm embarrassed to admit that I DID use the "search this thread" function but I guess I wasn't phrasing the search string correctly as none of the stuff it brought up was addressing the issue.

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  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. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 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