Page 151 of 305 FirstFirst ... 51101141149150151152153161201251 ... LastLast
Results 1,501 to 1,510 of 3042
  1. #1501
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by johnga View Post
    Hi Again!
    So I needed to move my site to a new server, and I figured I would upgrade to 1.3.8 while I was at it. I got everything moved over, except I have one small CSS problem which I can't seem to fix. Maybe another pair of eyes can see what i am missing. My logo is small, and my footer is pushed to the left:

    http://67.210.99.216/holidaytoyexpress/

    and it should look like this:

    www.holidaytoyexpress.com

    Any help would be appreciated and allow me to get some sleep!
    Remove all those extra stylesheets from your server from includes/templates/YOUR_TEMPLATE/css/. Only have ONE main stylesheet uploaded. They will all try to enforce themselves if they are online.

  2. #1502
    Join Date
    Oct 2005
    Location
    San Francisco
    Posts
    107
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Thanks! That explains a lot of things. I just assumed that if I renamed them, rather than replace them, I could save them in case I needed to back up a step. I learn a little every day!

  3. #1503
    Join Date
    Dec 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    hello and thank you for such a wonderful template. i have my headermenu.php file in the following location: includes/languages/english/extra_definitions/apple_zen/headermenu.php. however, when i edited the file, my menu/submenu names are not changing. for example, i changed define('HEADER_TITLE_CONTACT_US','Contact Us'); to define('HEADER_TITLE_CONTACT_US','contact us'); but the menu heading is still showing Contact Us (in sentence case). I've checked and re-checked the english.php file but I have not found the problem yet. are these defined somewhere other than headermenu.php and english.php? my store (that i'm still working on) is at www.alethiaonline.com/store. thanks.

  4. #1504
    Join Date
    Nov 2007
    Posts
    23
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hi,

    I'm using the blue colored template. I just recently decided to switch from right side-boxes, to left side-boxes. Moved them over no problem, but I see that there is a light blue graphic remaining behind where the column used to be. Can you tell me how to move it over to the left side, so it can be under the boxes, like it used to be on the right side please?

    Thanks.

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by deepwatersdotinfo View Post
    hello and thank you for such a wonderful template. i have my headermenu.php file in the following location: includes/languages/english/extra_definitions/apple_zen/headermenu.php. however, when i edited the file, my menu/submenu names are not changing. for example, i changed define('HEADER_TITLE_CONTACT_US','Contact Us'); to define('HEADER_TITLE_CONTACT_US','contact us'); but the menu heading is still showing Contact Us (in sentence case). I've checked and re-checked the english.php file but I have not found the problem yet. are these defined somewhere other than headermenu.php and english.php? my store (that i'm still working on) is at www.alethiaonline.com/store. thanks.
    OOH, love the site! Very cute!

    OK, all you have to do is change the "none" of the chunk below that is found in stylesheet_header_menu.css to "lowercase":

    Code:
    div#dropMenu li a {display: block; padding: .6em 0;text-decoration: none; text-transform:none/*edited uppercase*/
    Also, as a side note, I notice that you have two main stylesheets online, stylesheet.css and stylesheet1.css, remember that if a stylesheet is uploaded, it will try to exert itself, so you should only have ONE uploaded at a time.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by torrence View Post
    Hi,

    I'm using the blue colored template. I just recently decided to switch from right side-boxes, to left side-boxes. Moved them over no problem, but I see that there is a light blue graphic remaining behind where the column used to be. Can you tell me how to move it over to the left side, so it can be under the boxes, like it used to be on the right side please?

    Thanks.
    Did you do this portion of the instructions on moving the sideboxes to the left?

    Code:
    change:
    
    #centerColumnWrapper2{
    background:url(../images/content_bg.gif) repeat-y 80% 0;
    }
    
    to:
    
    #centerColumnWrapper2{
    background:url(../images/content_bg2.gif) repeat-y 20% 0;

  7. #1507
    Join Date
    Dec 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    OOH, love the site! Very cute!

    OK, all you have to do is change the "none" of the chunk below that is found in stylesheet_header_menu.css to "lowercase":

    Code:
    div#dropMenu li a {display: block; padding: .6em 0;text-decoration: none; text-transform:none/*edited uppercase*/
    Also, as a side note, I notice that you have two main stylesheets online, stylesheet.css and stylesheet1.css, remember that if a stylesheet is uploaded, it will try to exert itself, so you should only have ONE uploaded at a time.
    Thanks Jade. That did it. I also found where I needed to edit for the submenu. Question about moving sideboxes to the left side. I followed your instructions
    Code:
    #centerColumnWrapper2{
    background:url(../images/content_bg.gif) repeat-y 80% 0;
    }
    
    to:
    
    #centerColumnWrapper2{
    background:url(../images/content_bg2.gif) repeat-y 20% 0;
    
    Also change:
    
    .centerColumn {
    	width:75%;
    	float:left;
    	margin:0 2% 2% 3%;
    	text-align:left;
    	line-height:1.6em;
    	display:inline; /* fixes IE Bug in IE6 and earlier - do not remove */
    	}
    
    to:
    
    .centerColumn {
    	width:75%;
    	float:right;
    	margin:0 2% 2% 3%;
    	text-align:left;
    	line-height:1.6em;
    	display:inline; /* fixes IE Bug in IE6 and earlier - do not remove */
    	}
    but it didn't work. do i need to change any settings in the layout boxes controller to make this work? oh yes, i also removed the extra stylesheet. i did that while i was troubleshooting to see where the information was coming from. thanks.

    p.s. i'm glad you like the site. it's for a new line i'm launching.
    Last edited by deepwatersdotinfo; 10 Dec 2007 at 12:40 AM.

  8. #1508
    Join Date
    Dec 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by deepwatersdotinfo View Post
    Thanks Jade. That did it. I also found where I needed to edit for the submenu. Question about moving sideboxes to the left side. I followed your instructions
    Code:
    #centerColumnWrapper2{
    background:url(../images/content_bg.gif) repeat-y 80% 0;
    }
    
    to:
    
    #centerColumnWrapper2{
    background:url(../images/content_bg2.gif) repeat-y 20% 0;
    
    Also change:
    
    .centerColumn {
    	width:75%;
    	float:left;
    	margin:0 2% 2% 3%;
    	text-align:left;
    	line-height:1.6em;
    	display:inline; /* fixes IE Bug in IE6 and earlier - do not remove */
    	}
    
    to:
    
    .centerColumn {
    	width:75%;
    	float:right;
    	margin:0 2% 2% 3%;
    	text-align:left;
    	line-height:1.6em;
    	display:inline; /* fixes IE Bug in IE6 and earlier - do not remove */
    	}
    but it didn't work. do i need to change any settings in the layout boxes controller to make this work? oh yes, i also removed the extra stylesheet. i did that while i was troubleshooting to see where the information was coming from. thanks.

    p.s. i'm glad you like the site. it's for a new line i'm launching.
    I'm all set. I went back through the code more carefully and it worked perfectly. Thanks again for such a great template.

    P.S. If you want to be notified when the store goes online, just send me your email address via private message and if you're interested I'll give you a special discount as my way of saying thank you.

  9. #1509
    Join Date
    Nov 2007
    Posts
    23
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    Did you do this portion of the instructions on moving the sideboxes to the left?

    Code:
    change:
    
    #centerColumnWrapper2{
    background:url(../images/content_bg.gif) repeat-y 80% 0;
    }
    
    to:
    
    #centerColumnWrapper2{
    background:url(../images/content_bg2.gif) repeat-y 20% 0;
    Yup...first thing I did....

  10. #1510
    Join Date
    Nov 2007
    Posts
    23
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I'm an idiot...I HAD changed it...but evidently forgot to save changes...when I dbl checked I saw that it was still old setting!

    Thanks...sorry about that!!!

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

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