Zen Cart Logo
Forums / Addon Templates / Apple Zen Support Thread

Apple Zen Support Thread

Views: 855,297

Results 1,821 to 1,840 of 3,042
26 Mar 2008, 21:21
#1821
hollyck avatar

hollyck

New Zenner

Join Date:
Mar 2008
Posts:
6
Plugin Contributions:
0

Apple Zen Support Thread

Hi Jade, Thanks for this fabulous template! I've had tons of fun customizing it to match my site and have learned alot.

The 2 questions I have for you are (https://www.fussybaby.ca/store)

  1. How do I get rid of that little black 'Home' on the home tab?

  2. How do I get rid of the shadow on the top left hand side of the 'NavMainSearch' box? The shadow appears to be gone on the right side, but I don't know if or how I did that :)

Thanks so much for all the help you provide...that's phenomenal!

Holly

27 Mar 2008, 23:38
#1822
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

hollyck:

Hi Jade, Thanks for this fabulous template! I've had tons of fun customizing it to match my site and have learned alot.

The 2 questions I have for you are (https://www.fussybaby.ca/store)

  1. How do I get rid of that little black 'Home' on the home tab?

  2. How do I get rid of the shadow on the top left hand side of the 'NavMainSearch' box? The shadow appears to be gone on the right side, but I don't know if or how I did that :)

Thanks so much for all the help you provide...that's phenomenal!

Holly

  1. That's not on the home tab, that's the breadcrumb link. I would suggest two things. Change the background color of #navBreadCrumb so it doesn't blend in with the drop down menu. OR, go to your admin, "tools", "layout settings", and either turn of the navBreadCrumb all together, or turn it off for the home page only.

  2. Change this:

#headerWrapperb {
	background:#8C5D29 url(../images/shadowRight.png) repeat-y 100% 0;
	width:71em;
	}
	
#headerWrapperc {
	background:#8C5D29 url(../images/shadowLeft.png) repeat-y 0 0;
	width:71em;
	}

To this:

#headerWrapperb {
	background:#8C5D29;
	width:71em;
	}
	
#headerWrapperc {
	background:#8C5D29;
	width:71em;
	}
28 Mar 2008, 02:10
#1823
misticloudz avatar

misticloudz

New Zenner

Join Date:
Oct 2007
Posts:
52
Plugin Contributions:
0

Re: Apple Zen Support Thread

hi jade, i'm still loving the apple zen, but having a few small problems (well just one right now, i've figured most of the others out to some extent)...:frusty:
i'm trying to change the search header at the top, and i know that you're not too keen on adjusting inputs, but i'm just wondering if you have some insight into why i cannot get the search button and the input box to line up vertically. I just want them to line up that way, i'm not worried about width wise unless they're SUPER far apart.
here is my css code for the #navmainsearch section:

#navMainSearch {
/*area around search box and button including whole navmain area*/
	margin:0 auto ; 
	text-align:right;
	padding:0px 0px 0px 0px;
	}	

#navMainSearch input {
/*seems to move the search button*/
	margin:0px ;
    background-color:#A1C541;
	text-align:right;
	padding:0px 0px;
	}	

#navMainSearch input[type=text] {
   	margin: 0px 0 0 0;   
   	}

#navMainSearch input.topSearch{       
   	margin: 0 0 0px 0px;    
   	padding: 0px 0 0 0;
   	}

i have this at code starting at line 19 of my tpl_search_header.php file:

$content .= zen_draw_input_field('keyword', '', 'size="6" maxlength="30" style="width: 100px" value="' . HEADER_SEARCH_DEFAULT_TEXT . '" onfocus="if (this.value == \'' . HEADER_SEARCH_DEFAULT_TEXT . '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' . HEADER_SEARCH_DEFAULT_TEXT . '\';"') . ' <input type="image" img src="images/button_search.gif"' . HEADER_SEARCH_BUTTON . '" style="width: 70px" />';
``` to give it a button image instead of the standard search button.

basically the only reason i'm doing this is because i want the navmain area to be the same height as the dropdown menu link height, so it balances evenly on top and bottom of the header image... and the standard search thingie was just too tall and i'm too much of a noob to figure out how to make my own imaged search thingie like you have in cherry zen...

if anybody else has any suggestions, i'd love to hear them too!
thanks so much!
28 Mar 2008, 06:31
#1825
molywerks avatar

molywerks

Zen Follower

Join Date:
Aug 2006
Posts:
136
Plugin Contributions:
0

Re: Apple Zen Support Thread

misticloudz:

i'm just wondering if you have some insight into why i cannot get the search button and the input box to line up vertically.

misti, it appears you wiped out the class when you edited your width. my tpl_search_header_file has this bit of code:

    $content .= zen_draw_input_field('keyword', '', 'size="6" maxlength="30" class="topSearch" style="width: 16%" value="' . HEADER_SEARCH_DEFAULT_TEXT . '" onfocus="if (this.value == \'' . HEADER_SEARCH_DEFAULT_TEXT . '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' . HEADER_SEARCH_DEFAULT_TEXT . '\';"') . ' ' . zen_image_submit (BUTTON_IMAGE_SEARCH,HEADER_SEARCH_BUTTON);

with the crucial difference being class="topSearch".

28 Mar 2008, 20:21
#1826
breezyr avatar

breezyr

New Zenner

Join Date:
Feb 2008
Posts:
14
Plugin Contributions:
0

Re: Apple Zen Support Thread

How do I make the bar on the top of the page white instead of green, been trying to figure out which file that is in.

Thanks

28 Mar 2008, 20:32
#1827
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

bajajsakti:

http://pettags4less.com/css_validation.gif

Why error?

You can ignore that error.

28 Mar 2008, 20:34
#1828
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

breezyr:

How do I make the bar on the top of the page white instead of green, been trying to figure out which file that is in.

Thanks

You don't need to find the file with the header bar, you just need to open up includes/templates/apple_zen/css/stylesheet.css. That background color is controlled by #navMainWrapper

28 Mar 2008, 20:53
#1829
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

misticloudz:

hi jade, i'm still loving the apple zen, but having a few small problems (well just one right now, i've figured most of the others out to some extent)...:frusty:
i'm trying to change the search header at the top, and i know that you're not too keen on adjusting inputs, but i'm just wondering if you have some insight into why i cannot get the search button and the input box to line up vertically. I just want them to line up that way, i'm not worried about width wise unless they're SUPER far apart.
here is my css code for the #navmainsearch section:

#navMainSearch {
/area around search box and button including whole navmain area/
margin:0 auto ;
text-align:right;
padding:0px 0px 0px 0px;
}

#navMainSearch input {
/seems to move the search button/
margin:0px ;
background-color:#A1C541;
text-align:right;
padding:0px 0px;
}

#navMainSearch input[type=text] {
margin: 0px 0 0 0;
}

#navMainSearch input.topSearch{
margin: 0 0 0px 0px;
padding: 0px 0 0 0;
}

> 
> i have this at code starting at line 19 of my tpl_search_header.php file:
>  ```php
$content .= zen_draw_input_field('keyword', '', 'size="6" maxlength="30" style="width: 100px" value="' . HEADER_SEARCH_DEFAULT_TEXT . '" onfocus="if (this.value == \'' . HEADER_SEARCH_DEFAULT_TEXT . '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' . HEADER_SEARCH_DEFAULT_TEXT . '\';"') . ' <input type="image" img src="images/button_search.gif"' . HEADER_SEARCH_BUTTON . '" style="width: 70px" />';
``` to give it a button image instead of the standard search button.
> 
> basically the only reason i'm doing this is because i want the navmain area to be the same height as the dropdown menu link height, so it balances evenly on top and bottom of the header image... and the standard search thingie was just too tall and i'm too much of a noob to figure out how to make my own imaged search thingie like you have in cherry zen...
> 
> if anybody else has any suggestions, i'd love to hear them too!
> thanks so much!

You're making this *way* to complicated, and your code above isn't correct. I don't normally STYLE inputs, but I certainly don't have a problem adjusting their padding, LOL. First, put back the original tpl_search_header.php:

<?php /** * Side Box Template * * @package templateSystem * @copyright Copyright 2003-2006 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: tpl_search_header.php 4142 2006-08-15 04:32:54Z drbyte $ */ $content = ""; $content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get'); $content .= zen_draw_hidden_field('main_page',FILENAME_ADVANCED_SEARCH_RESULT); $content .= zen_draw_hidden_field('search_in_description', '1') . zen_hide_session_id(); if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes') { $content .= zen_draw_input_field('keyword', '', 'size="6" maxlength="30" class="topSearch" style="width: 16%" value="' . HEADER_SEARCH_DEFAULT_TEXT . '" onfocus="if (this.value == \'' . HEADER_SEARCH_DEFAULT_TEXT . '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' . HEADER_SEARCH_DEFAULT_TEXT . '\';"') . ' ' . zen_image_submit (BUTTON_IMAGE_SEARCH,HEADER_SEARCH_BUTTON); } else { $content .= zen_draw_input_field('keyword', '', 'size="6" maxlength="30" class="topSearch" style="width: 16%" value="' . HEADER_SEARCH_DEFAULT_TEXT . '" onfocus="if (this.value == \'' . HEADER_SEARCH_DEFAULT_TEXT . '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' . HEADER_SEARCH_DEFAULT_TEXT . '\';"') . ' ' . zen_image_submit (BUTTON_IMAGE_SEARCH,HEADER_SEARCH_BUTTON); } $content .= "</form>"; ?>

Then upload your new search button as: includes/templates/apple_zen/buttons/english/button_search.gif

Replace the following sections of css with this:

#navMainSearch {
margin:0 auto;
text-align:right;
padding:0 5px;
}

#navMainSearch input {
margin:0 auto;
text-align:right;
padding:1px 5px;
background-color:#A1C541;
}

#navMainSearch input[type=text] {
margin: 2px 0 0 1em;
}

#navMainSearch input.topSearch{
margin: 0 0 5px 2px;
padding: 0 0 0 0;
vertical-align: bottom;
}
}

28 Mar 2008, 22:18
#1830
breezyr avatar

breezyr

New Zenner

Join Date:
Feb 2008
Posts:
14
Plugin Contributions:
0

Re: Apple Zen Support Thread

jettrue:

You don't need to find the file with the header bar, you just need to open up includes/templates/apple_zen/css/stylesheet.css. That background color is controlled by #navMainWrapper

Thanks for your help, I appreciate it!
:yes:

29 Mar 2008, 16:10
#1831
droidwork avatar

droidwork

New Zenner

Join Date:
Mar 2008
Posts:
20
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi, i wish to add mini ad banners to the side grey box area. how can i do it?

29 Mar 2008, 17:08
#1832
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

droidwork:

Hi, i wish to add mini ad banners to the side grey box area. how can i do it?

Use the built in zen cart banner manager, under "Tools", "Banner Manager". Turn on a banner sidebox under "Tools", "layout boxes controller".

29 Mar 2008, 22:53
#1833
droidwork avatar

droidwork

New Zenner

Join Date:
Mar 2008
Posts:
20
Plugin Contributions:
0

Re: Apple Zen Support Thread

jettrue:

Use the built in zen cart banner manager, under "Tools", "Banner Manager". Turn on a banner sidebox under "Tools", "layout boxes controller".

Thanks. How do i change the title word sponsers?

29 Mar 2008, 23:39
#1834
droidwork avatar

droidwork

New Zenner

Join Date:
Mar 2008
Posts:
20
Plugin Contributions:
0

Re: Apple Zen Support Thread

droidwork:

Thanks. How do i change the title word sponsers?

i manage to change the wording. If i wish to add more than 1 banner? How do i add in?

30 Mar 2008, 02:53
#1835
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

droidwork:

i manage to change the wording. If i wish to add more than 1 banner? How do i add in?

Banners FAQ

30 Mar 2008, 19:39
#1836
misticloudz avatar

misticloudz

New Zenner

Join Date:
Oct 2007
Posts:
52
Plugin Contributions:
0

Re: Apple Zen Support Thread

I don't normally STYLE inputs, but I certainly don't have a problem adjusting their padding, LOL.

awesome, jade, thank you so much. i knew that i was making it too hard, but just coudln't figure it out...
thanks again! :-)

01 Apr 2008, 03:41
#1837
droidwork avatar

droidwork

New Zenner

Join Date:
Mar 2008
Posts:
20
Plugin Contributions:
0

Re: Apple Zen Support Thread

thank you so much for your help

02 Apr 2008, 20:07
#1838
shane102 avatar

shane102

New Zenner

Join Date:
Jan 2008
Location:
Norway &amp; Ireland
Posts:
29
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi all,

Nice template Jade, I've installed it on my website and it installed quickly and without problems.

That said there have been a couple of things that have changed after installing the template.

#1 All of the links on my website have changed from blue to dark grey and are no longer underlined, thus they are not very easy to see.

#2 I use some DHTML to create text popups on the front page of my site but they don't appear where they should relative to the text that activates them, also if I then hover the mouse over one of the product images(imagehandler2) the text popups no longer function until I refresh the page??

other wise I'm very pleased with the template.(donation will arrive after I begin to earn some from the site)

If anyone could enlighten me as to how to fix the above then :bigups:

shane http://www.greyonblue.com

I would also like to hear peoples opinions of my site

02 Apr 2008, 21:36
#1839
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Apple Zen Support Thread

shane102:

Hi all,

Nice template Jade, I've installed it on my website and it installed quickly and without problems.

That said there have been a couple of things that have changed after installing the template.

#1 All of the links on my website have changed from blue to dark grey and are no longer underlined, thus they are not very easy to see.

#2 I use some DHTML to create text popups on the front page of my site but they don't appear where they should relative to the text that activates them, also if I then hover the mouse over one of the product images(imagehandler2) the text popups no longer function until I refresh the page??

other wise I'm very pleased with the template.(donation will arrive after I begin to earn some from the site)

If anyone could enlighten me as to how to fix the above then :bigups:

shane http://www.greyonblue.com

I would also like to hear peoples opinions of my site

  1. Change the links styling in the stylesheet.css:

a:link {
color:#4f4f4f; /*site links color */
text-decoration:none;
}

a:visited {
text-decoration:none;
color:#313131;
}

a:hover {
color:#000000; /* color when links are hovered over */
text-decoration:none;
}

  1. I didn't design the dhtml thingie, but it looks like you need to make some adjustments to it. Look at the code that you pasted into your site, and find out where you need to adjust the numbers so it doesn't go so far down the page. As for its interaction with IH2, I have no earthly idear, sorry!
05 Apr 2008, 17:25
#1840
cache529 avatar

cache529

New Zenner

Join Date:
Mar 2008
Posts:
14
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi Jade,

Thank you for this contribution. I changed the color of the dropdown menu when unselected to match the color of the dropdownMenuWrapper...I was able to put the line back in the last tab (Shopping Cart), but how do I add a line to the front of the "Home" tab. Thank you for your assistance.