Zen Cart Logo
Forums / Addon Templates / Simple Zen Template - Support Thread

Simple Zen Template - Support Thread

Views: 127,081

Results 321 to 340 of 462
17 Oct 2007, 7:23 PM
#321
stephy avatar

stephy

New Zenner

Join Date:
Aug 2007
Posts:
8
Plugin Contributions:
0

Simple Zen Template - Support Thread

Hi,
I am using the simplezen template (which is lovely)and would like some advice if possible.
Not sure if it is specific to the template so just say if I need to ask elsewhere.
My site is here and I have got it looking as I wish in IE7 but not firefox, the categories are way down the page not over the image like in IE7
Does anyone know how I could get it to look the same in firefox as it does in IE7.
Many thanks for any help

17 Oct 2007, 9:03 PM
#322
jettrue avatar

jettrue

Totally Zenned

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

Re: Simple Zen Template - Support Thread

stephy:

Hi,
I am using the simplezen template (which is lovely)and would like some advice if possible.
Not sure if it is specific to the template so just say if I need to ask elsewhere.
My site is here and I have got it looking as I wish in IE7 but not firefox, the categories are way down the page not over the image like in IE7
Does anyone know how I could get it to look the same in firefox as it does in IE7.
Many thanks for any help

Well, your logo needs to be shorter, It is 600 pixels tall, and that is why it is pushed down. Its the incorrect handling of IE that is making it look OK in IE.

17 Oct 2007, 9:30 PM
#323
stephy avatar

stephy

New Zenner

Join Date:
Aug 2007
Posts:
8
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

Thank you for your reply.
I thought it was odd that it looked okay:smile:
Is there anyway I can move it from being a logo to being a background.
As I would like to keep the image as it is and not reduce the size.
Many thanks for any help.

17 Oct 2007, 10:15 PM
#324
jettrue avatar

jettrue

Totally Zenned

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

Re: Simple Zen Template - Support Thread

stephy:

Thank you for your reply.
I thought it was odd that it looked okay:smile:
Is there anyway I can move it from being a logo to being a background.
As I would like to keep the image as it is and not reduce the size.
Many thanks for any help.

You could change mainWrapper to this:

div#mainWrapper {
margin-top:25px;
text-align: left;
width: 850px;
vertical-align: top;
background:url(includes/templates/simple_zen/images/logo.gif)no-repeat;
border:5px solid #transparent;
}

then open up includes/templates/simple_zen/common/tpl_header.php

and change:

<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT, HEADER_LOGO_WIDTH, HEADER_LOGO_HEIGHT) . '</a>'; ?></div>

to this:

<div id="logo"></div>

You'll also need open the logo in an image editing program to make a 34 pixel gap at the top of the image, so that the logo starts after the Home Login bar. Hope that makes sense.

17 Oct 2007, 10:35 PM
#325
stephy avatar

stephy

New Zenner

Join Date:
Aug 2007
Posts:
8
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

Thank you for your help.
I have done what you wrote (i think)
but no image is showing.
Have i missed something?
Thank you.

18 Oct 2007, 1:02 AM
#326
jettrue avatar

jettrue

Totally Zenned

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

Re: Simple Zen Template - Support Thread

stephy:

Thank you for your help.
I have done what you wrote (i think)
but no image is showing.
Have i missed something?
Thank you.

Sorry, change:

background:url(includes/templates/simple_zen/images/logo.gif)no-repeat;

background:#ffffff url(../images/logo.gif)no-repeat;

18 Oct 2007, 4:16 AM
#327
shelia avatar

shelia

New Zenner

Join Date:
Apr 2006
Posts:
79
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

stephy:

I have got it looking as I wish in IE7 but not firefox, the categories are way down the page not over the image like in IE7
Does anyone know how I could get it to look the same in firefox as it does in IE7.
Many thanks for any help

I have my site looking right in Firefox and not IE! I have a gap of space in the header and the categories links are overlapping the header. Any suggestions? Thanks!

Shelia

18 Oct 2007, 8:32 AM
#328
stephy avatar

stephy

New Zenner

Join Date:
Aug 2007
Posts:
8
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

jettrue:

Sorry, change:

background:url(includes/templates/simple_zen/images/logo.gif)no-repeat;

background:#ffffff url(../images/logo.gif)no-repeat;
Thank you for your reply.
It has worked brilliantly in firefox but is not showing image or change of colour in IE7.
I have deleted my cookies just in case that was the problem but still hasn't changed.

18 Oct 2007, 10:58 AM
#329
jettrue avatar

jettrue

Totally Zenned

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

Re: Simple Zen Template - Support Thread

stephy:

Thank you for your reply.
It has worked brilliantly in firefox but is not showing image or change of colour in IE7.
I have deleted my cookies just in case that was the problem but still hasn't changed.

Try it like the below?

background:url("../images/logo.gif") no-repeat;

18 Oct 2007, 12:52 PM
#330
stephy avatar

stephy

New Zenner

Join Date:
Aug 2007
Posts:
8
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

Thank you ever so much the image is showing lovely now.
:smile:

18 Oct 2007, 8:57 PM
#331
jettrue avatar

jettrue

Totally Zenned

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

Re: Simple Zen Template - Support Thread

stephy:

Thank you ever so much the image is showing lovely now.
:smile:

Great, it may have just been the missing quotes, try adding back the #ffffff now, so that the background for the content is all white:

background:#fff url("../images/logo.gif") no-repeat;

(you can use #fff instead of #ffffff)

18 Oct 2007, 9:04 PM
#332
jettrue avatar

jettrue

Totally Zenned

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

Re: Simple Zen Template - Support Thread

stephy:

Thank you ever so much the image is showing lovely now.
:smile:

Also, I'll just offer the quick opinion that I think it would look better if the "home login" header would have a pale blue (matching the daisy color) background image, vs. gold.

20 Oct 2007, 4:13 AM
#333
shelia avatar

shelia

New Zenner

Join Date:
Apr 2006
Posts:
79
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

My site is making me nuts.... its fine in Firefox but there is a gap above my logo and overlapping in IE!

Help! Any suggestions? Thanks!

Shelia

25 Nov 2007, 2:00 PM
#334
mb1 avatar

mb1

Totally Zenned

Join Date:
Jun 2006
Posts:
565
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

i've got everything running but i was just curious if i about the space between the logo and topnav that has to be filled in with the same type of background, i wish i could just remove it and let logo and topnav conect. plus it's perfect in firefox but the whole header is off in IE take a peek.

https://www.gorillagear.ca

25 Nov 2007, 4:17 PM
#335
jettrue avatar

jettrue

Totally Zenned

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

Re: Simple Zen Template - Support Thread

MB1:

i've got everything running but i was just curious if i about the space between the logo and topnav that has to be filled in with the same type of background, i wish i could just remove it and let logo and topnav conect. plus it's perfect in firefox but the whole header is off in IE take a peek.

https://www.gorillagear.ca

Take out the margin-bottom:5px; from navMainWrapper.

25 Nov 2007, 10:29 PM
#336
mb1 avatar

mb1

Totally Zenned

Join Date:
Jun 2006
Posts:
565
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

that got rid of the gap in fixfox but not in IE

13 Dec 2007, 7:04 PM
#337
dharma avatar

dharma

Totally Zenned

Join Date:
Nov 2006
Posts:
505
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

Hello Again!

I am in the process of upgrading my cart to 1.3.8a from 1.3.7.

I am using your template SZ v2.0 (haven't upgraded to v2.1 yet)

I saw this mentioned in the whats new for 1.3.8, does this affect us, or do we need to change anything in our CUSTOM stylesheets?

Stylesheet changes:

  • media manager ... converted IDs to Classes: .mediaTitle, .mediaTypeLink
  • textarea ... removed float:left
    ADDED NEW STYLE SELECTORS for Shipping Estimator output:
  • #shoppingcartBody #shippingEstimatorContent
  • .seDisplayedAddressLabel
  • .seDisplayedAddressInfo
  • .seShipTo

UPGRADING YOUR TEMPLATES

Since version 1.2, Zen Cart™ has had a major overhaul of the templating system for v1.3. As such, you have two options:
upgrade your existing template by applying the new stylesheet and moving a few lines of code around; or
the best way to have almost-tableless and much tidier template code, is to make a new template (based on template_default or the new "green" classic introduced in v1.3.5) and carefully re-apply your own customizations to the new template system.

Change: CSS -- Some template ID tags changed to classes because rendered from inside a loop
BugFix: media manager template was using duplicate CSS IDs. Changed to classes in stylesheet

Thanks!

13 Dec 2007, 9:40 PM
#338
jettrue avatar

jettrue

Totally Zenned

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

Re: Simple Zen Template - Support Thread

dharma:

Hello Again!

I am in the process of upgrading my cart to 1.3.8a from 1.3.7.

I am using your template SZ v2.0 (haven't upgraded to v2.1 yet)

I saw this mentioned in the whats new for 1.3.8, does this affect us, or do we need to change anything in our CUSTOM stylesheets?

Thanks!

Add any new css from 1.3.8 to your stylesheet.

15 Jan 2008, 5:57 PM
#339
dionysian avatar

dionysian

New Zenner

Join Date:
Mar 2007
Posts:
25
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

jettrue,

Thank you for a nice template!

I'm trying to figure out how to lengthen the logo area where the logo and the "shopping cart," "contact us," and "my account" links appear.

How can I add more height to this area? Greatly appreciate your help.

17 Jan 2008, 6:45 AM
#340
ezskratch avatar

ezskratch

New Zenner

Join Date:
May 2007
Posts:
41
Plugin Contributions:
0

Re: Simple Zen Template - Support Thread

Jet,

Time for 2 quick questions?

I am beating my head against simple mis alignment issues. I have read and read - but cannot seem to solve these problems for this site : http://www.ezskratch.com/store/index.php?main_page=index

  1. Blank space to right of SHOPPING CART - want to kill and spread remaining 6 MENU ITEMS over same space.

  2. Want to line up Grey HOME menu w striped lines and Green Home menu line.

Thanks!