Page 95 of 326 FirstFirst ... 45859394959697105145195 ... LastLast
Results 941 to 950 of 3251
  1. #941
    Join Date
    Feb 2008
    Location
    Colorado
    Posts
    80
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    How does one delete "HEADER_SALES_TEXT" from beneath the header?

    Tried deleting several snippets -- only to lose the entire page. :)

  2. #942
    Join Date
    Mar 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Okay forgive the multiple posts (I still can't figure out how to edit existing posts).

    I figured out the reason behind my shifting right column. It appears that my logo is causing this to happen. I tried setting the tagline to 0% but that doesn't seem to help. Is there a size limit on the logo? And why does it only break IE6. Any ideas on how to fix this (and the problem below) is much appreciated!!!!

    P.S - What kind of dog dig you get Jade? I'm a huge animal lover!


    Quote Originally Posted by SirenK View Post
    Anyway, I got the new images to display, however when you roll over them they shift up. This is acceptable for IE7 and Firefox I suppose (though I'd prefer they didn't) but in IE6 it looks like crap. IE6 is also adding more red below which makes the tabs appear to be floating in the middle of red, which looks bad.

    Thanks so much for all the help and patience!!!

  3. #943
    Join Date
    Mar 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Try this: Go to includes/languages/english/cherry_zen/header.php, and remove this text: Your logo could be wider here, Sales Header Text Could Be here, Or a Banner Image, or any combination of the three.

    Quote Originally Posted by Lovely View Post
    How does one delete "HEADER_SALES_TEXT" from beneath the header?

    Tried deleting several snippets -- only to lose the entire page. :)

  4. #944
    Join Date
    Feb 2008
    Location
    Colorado
    Posts
    80
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Thanks, SirenK. Unfortunately, that bit of code isn't there in that file.

    LOL.

    It's so frustrating! When I "view source" I can see exactly what needs changed -- but I can't find the correct file (the header sales text).

    I also want to change the alt for the logo. It now reads "powered by zen cart --- blah, blah", but I can't find the right file in which to do it!

  5. #945
    Join Date
    Feb 2008
    Location
    Colorado
    Posts
    80
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Well, I figured out the tpl_box_default issue. I just saved a version from the main zen cart program to the cherry zen folder.

    BUT NOW THE IMAGE DOESN'T FIT THE SIDE BAR. Help!

  6. #946
    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 SirenK View Post
    Can someone tell me how to edit a previous post? I feel bad posting as I figure things out and then putting up a new post...

    Anyway, I got the new images to display, however when you roll over them they shift up. This is acceptable for IE7 and Firefox I suppose (though I'd prefer they didn't) but in IE6 it looks like crap. IE6 is also adding more red below which makes the tabs appear to be floating in the middle of red, which looks bad.

    And I still can't seem to figure out the right column problem. If you look at this in IE7 and IE6, you can see how IE6 just wrecks everything (i wont even get into the fact that ie6 doesn't seem to like the fold out menu... *sigh* )

    Thanks so much for all the help and patience!!!
    If the rollovers look different, then you didn't create new images that are exactly like the old ones (but with different fonts). Make sure they are the same height/width/etc.

    The IE issues are probably margins and padding for the fold out menu... I bet IE sees that section as too wide, so it wrecks everything.

  7. #947
    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 SirenK View Post
    Okay forgive the multiple posts (I still can't figure out how to edit existing posts).

    I figured out the reason behind my shifting right column. It appears that my logo is causing this to happen. I tried setting the tagline to 0% but that doesn't seem to help. Is there a size limit on the logo? And why does it only break IE6. Any ideas on how to fix this (and the problem below) is much appreciated!!!!

    P.S - What kind of dog dig you get Jade? I'm a huge animal lover!
    Since you're using a fixed width site, change this section of your css:

    Code:
    #nw {
    	width:990px; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
    	max-width:990px; /* prevents the main content from getting wider than 1300px in sites other than IE */
    	min-width:850px; /* this prevents the main content from getting smaller than 1000px in browsers OTHER THAN IE. You can make this as small as 800px, BUT any smaller than that, and the top header menu will break into two lines. Also, if you make this width 800px, you will need to make sure your product image on the product info page is no wider than 190px */
    	}
    
    /* IE only. Controls Width of Site and Main Content*/
    * html #nw {
    	width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 990? "990px" : d.clientWidth > 1048? "80%" : d.clientWidth < 1048? "800px" : "80%")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */
    	}
    to this:
    Code:
    #nw {
    	width:990px; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
    	}
    I don't think the logo is the issue.

    We adopted a stray, she is a Schnauzer/Poodle mix, she looks more schnauzer than poodle. Not curly at all. And she's much bigger than usual "Schnoodles" at about 46 lbs. I'll have to post a pic soon, or change my avatar. She's a great dog, estimated to be about 4 years old, spayed, housebroken, and crate trained. She's super sweet, and loves people. The only issues we have is that she and our 12 year old cat are still getting used to each other, and she's run away once (she's got a nose like a hound - but thankfully we have a collar with our phone number on it, and she's microchipped, and someone called us within 10 minutes). Now that makes 7 pets in our house... 3 fish, 2 aquatic turtles, 1 dog, 1 cat. If it were all up to me, I'd add a another dog, another cat, a bird, some sort of rodent, and even a pet snake. I love all animals, but each one takes some time to convince my hubby. And anyway, then I'd really have no time to myself.

  8. #948
    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 Lovely View Post
    Thanks, SirenK. Unfortunately, that bit of code isn't there in that file.

    LOL.

    It's so frustrating! When I "view source" I can see exactly what needs changed -- but I can't find the correct file (the header sales text).

    I also want to change the alt for the logo. It now reads "powered by zen cart --- blah, blah", but I can't find the right file in which to do it!
    In tpl_header.php, just remove the tagline section, if you're not going to use it.
    <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>

  9. #949
    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 Lovely View Post
    Well, I figured out the tpl_box_default issue. I just saved a version from the main zen cart program to the cherry zen folder.

    BUT NOW THE IMAGE DOESN'T FIT THE SIDE BAR. Help!
    Change this section:
    Code:
    h3.leftBoxHeading, h3.rightBoxHeading {
    	background: #6b2b12;
    	}
    to this:

    Code:
    h3.leftBoxHeading, h3.rightBoxHeading {
    	margin:0 0 50px 0;
    	}

  10. #950
    Join Date
    Feb 2008
    Location
    Colorado
    Posts
    80
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Jettrue, THANK YOU! This is a great template -- perfect for those of us just learning how to tweak code.

 

 

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