Page 44 of 47 FirstFirst ... 344243444546 ... LastLast
Results 431 to 440 of 462
  1. #431

    help question Re: Simple Zen Template - Support Thread

    Hi Jade,
    I have taken over a Zen Cart which appears to be using your Simple Zen template. (I found your name in the code). The preceding users did not create any log of their customizations of mods.
    Zen cart V. 1.3.7 url: http://www.wbpress.com

    But what I need to know is fairly simple (maybe not).
    I need to add alt tag descriptions to images in the template. Specifically the main banner/header graphic. Plus any and all other graphics/images if I can. I am unsure where in the template to add the alt description as they seem to have not organized the site at all. (there are multiple tpl_ pages )
    Is it possible to have alt tags in the cart images? If so where can I config those?
    Finally can we add either a custom alt or label to the input fields?

    I am trying to get the cart as 508 compliant as possible.
    thanks for your help!
    Bruce B

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

    Default Re: Simple Zen Template - Support Thread

    Quote Originally Posted by Bubba9000 View Post
    Hi Jade,
    I have taken over a Zen Cart which appears to be using your Simple Zen template. (I found your name in the code). The preceding users did not create any log of their customizations of mods.
    Zen cart V. 1.3.7 url: http://www.wbpress.com

    But what I need to know is fairly simple (maybe not).
    I need to add alt tag descriptions to images in the template. Specifically the main banner/header graphic. Plus any and all other graphics/images if I can. I am unsure where in the template to add the alt description as they seem to have not organized the site at all. (there are multiple tpl_ pages )
    Is it possible to have alt tags in the cart images? If so where can I config those?
    Finally can we add either a custom alt or label to the input fields?

    I am trying to get the cart as 508 compliant as possible.
    thanks for your help!
    Bruce B
    Hi,

    This is not template specific, and questions like this would work well in the general forum. However, I'll point you to the header alt text: includes/languages/english/YOUR_TEMPLATE/header.php

    All of the images of zen cart already have alt tags.

  3. #433

    Default Re: Simple Zen Template - Support Thread

    Thanks for the quick reply. I did actually find where to put the alt tag content while waiting and am now looking for how to add alt/label tags to the input fields and to have distinct alt tags for all the layout images. Unfortunatly a search for this leads me back to my original post.
    thanks again.

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

    Default Re: Simple Zen Template - Support Thread

    Quote Originally Posted by Bubba9000 View Post
    Thanks for the quick reply. I did actually find where to put the alt tag content while waiting and am now looking for how to add alt/label tags to the input fields and to have distinct alt tags for all the layout images. Unfortunatly a search for this leads me back to my original post.
    thanks again.
    The main layout files are in includes/templates/YOUR_TEMPLATE/COMMON/

  5. #435
    Join Date
    Apr 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Simple Zen Template - Support Thread

    Hello I love the simple zen cart template it is what i have been
    looking for, thank you.

    I am using the latest zen cart version, no addtions

    Questions however..

    1. i have been racking my brain looking at the css trying to find how the code where i would change the right and left nav columns background color from white to black

    here is the css code, but i don't see where to change it, I also tried
    rightboxcontent in css to no avail.

    What part of the code do I change to to switch the right and left backgrounds columns to black?


    #navColumnOne {
    padding: 0.5em;
    }

    #navColumnTwo {
    padding: 0.5em;
    }

    #navColumnTwo a {
    color:#933;
    }

    #navColumnTwo a:hover {
    color:#333;
    }
    2. what file do i change so it does not say "Zen Cart! The art of commere" in the browser tabs window.

    thank you for your response in advance

  6. #436
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,183
    Plugin Contributions
    11

    Default Re: Simple Zen Template - Support Thread

    Get yourself a copy of firefox with the firebug add on. Firebug can be TREMENDOUS help when dealing with css.
    Your other question is covered in the Tutorials/FAQ. There's some great stuff there.

  7. #437
    Join Date
    Apr 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Simple Zen Template - Support Thread

    No doubt I do have firebug, and I will check the tutorials/faqs. I am a newbie to this and I have managed to troubleshoot most of my issues.

    These are two issues can't seem to get over even though they may be simple to others.

    Once again to someone who may be familiar with the template please answer my questions

    thank u once again

  8. #438
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,183
    Plugin Contributions
    11

    Default Re: Simple Zen Template - Support Thread

    Even using the same template can be different on each site. Several things can cause the problem including the occasional stray css file.
    If you have firebug, open it up, click on inspect, and click on the area you want to change. You may have to go up or down a div or two to find the area you want to change.
    A couple of hints...

    1. There is no background color where you want so it will need to be added -- maybe
    2. If you have made other portions of the template black and the columns are not, then there's something else going on.

    Best thing to do (even when dealing with a template's own discussion thread) is to include a link to your site. If you don't want the spiders to get it, enter it as mysiteDOTcom.

    And... Make sure it's not Down for Maintenance when you post.
    Last edited by dbltoe; 21 May 2009 at 06:54 AM.

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

    Default Re: Simple Zen Template - Support Thread

    Quote Originally Posted by RICHNICE View Post
    Hello I love the simple zen cart template it is what i have been
    looking for, thank you.

    I am using the latest zen cart version, no addtions

    Questions however..

    1. i have been racking my brain looking at the css trying to find how the code where i would change the right and left nav columns background color from white to black

    here is the css code, but i don't see where to change it, I also tried
    rightboxcontent in css to no avail.

    What part of the code do I change to to switch the right and left backgrounds columns to black?




    2. what file do i change so it does not say "Zen Cart! The art of commere" in the browser tabs window.

    thank you for your response in advance
    1. just add a background color.
    #navColumnOne {
    padding: 0.5em;
    background:#000;
    }

    #navColumnTwo {
    padding: 0.5em;
    background:#000;
    }

    2. includes/languages/english/meta_tags.php

    be sure to move it to includes/languages/english/YOUR_TEMPLATE/ after changing it.

  10. #440
    Join Date
    Dec 2008
    Posts
    39
    Plugin Contributions
    0

    Default Re: Simple Zen Template - Support Thread

    Hello.
    I'm using this template on my site and have been for a while. I've looked and looked but I can't figure out how to put more space between the fields in the left hand column.

    For example, how can I put more distance between 'categories' 'links' and 'who's online' fields.

    I also want to change the font size for the entries in these fields as well.

    I've been trying to work this out for months, so any help will be greatly appreciated.

    If needed, you can view my site here.

 

 
Page 44 of 47 FirstFirst ... 344243444546 ... 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

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