Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Logo Wrapper settings are not cooperating with me..Help please..

Logo Wrapper settings are not cooperating with me..Help please..

Locked

Views: 3,769

Results 1 to 11 of 11
This thread is locked. New replies are disabled.
11 Dec 2007, 2:37 AM
#1
coolscrapbook avatar

coolscrapbook

New Zenner

Join Date:
Nov 2007
Posts:
49
Plugin Contributions:
0

Logo Wrapper settings are not cooperating with me..Help please..

Ok,

I get 2 repeated logos with the following setttings:
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat:** repeat-x;** background-color: #ffffff;
text-align:center;
height:175px;
}

and I get four repeated logos with the following settings:
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: repeat; background-color: #ffffff;
text-align:center;
height:175px;
}

What I really need is NO repeated logos at all. I just need my logo to be nicely centered and displayed only once.
Anyone know how I can change this?

Thank you in advance. I'm using version 1.3.7.1

My store is at:
http://www.extremedigiscraps.com/Store/

Addie

11 Dec 2007, 3:46 AM
#2
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Logo Wrapper settings are not cooperating with me..Help please..

coolscrapbook:

Ok,

I get 2 repeated logos with the following setttings:
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat:** repeat-x;** background-color: #ffffff;
text-align:center;
height:175px;
}

and I get four repeated logos with the following settings:
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: repeat; background-color: #ffffff;
text-align:center;
height:175px;
}

What I really need is NO repeated logos at all. I just need my logo to be nicely centered and displayed only once.
Anyone know how I can change this?

Thank you in advance. I'm using version 1.3.7.1

My store is at:
http://www.extremedigiscraps.com/Store/

Addie

try no-repeat

11 Dec 2007, 4:14 AM
#3
coolscrapbook avatar

coolscrapbook

New Zenner

Join Date:
Nov 2007
Posts:
49
Plugin Contributions:
0

Re: Logo Wrapper settings are not cooperating with me..Help please..

clydejones:

try no-repeat

I did, and it does not work. But I think I know why and I do not know how to fix it.

I have my site setting to 100%, so eventhough I have my header set for no-repeat, when I view my site on my big wide screen, it duplicates my header logo, but when I reduce my window, it reduces it back to one. Here is my question: How can I make my logo to "FLOAT" inside my header? Is that possible? So that when I stretch the site to a wide screen view on my computer, the logo can adjust to the center of the header. Is that even possible?

11 Dec 2007, 4:21 AM
#4
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Location:
West Salem, IL
Posts:
2,845
Plugin Contributions:
0

Re: Logo Wrapper settings are not cooperating with me..Help please..

looks like its set at repeat-x to me.....try this

#logoWrapper{
	background-image: url(../images/header_bg.jpg);
	background-repeat: no-repeat;
	background-color: #ffffff;
	height:175px;
	margin: auto;
}

adjust the height to match your image being used

11 Dec 2007, 4:27 AM
#5
coolscrapbook avatar

coolscrapbook

New Zenner

Join Date:
Nov 2007
Posts:
49
Plugin Contributions:
0

Re: Logo Wrapper settings are not cooperating with me..Help please..

barco57:

looks like its set at repeat-x to me.....try this

#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: no-repeat;
background-color: #ffffff;
height:175px;
margin: auto;
}

> 
> adjust the height to match your image being used

Well, I think we're getting closer here.  I now have 1 logo which is wonderful, but now I can't see it at all. Look at what happened to my store header logo...

<http://www.extremedigiscraps.com/Store>

Addie
11 Dec 2007, 4:29 AM
#6
coolscrapbook avatar

coolscrapbook

New Zenner

Join Date:
Nov 2007
Posts:
49
Plugin Contributions:
0

Re: Logo Wrapper settings are not cooperating with me..Help please..

Whoops, forgot the height...hold on..let me put that in...sorry..

11 Dec 2007, 4:30 AM
#7
coolscrapbook avatar

coolscrapbook

New Zenner

Join Date:
Nov 2007
Posts:
49
Plugin Contributions:
0

Re: Logo Wrapper settings are not cooperating with me..Help please..

Perfect, now I have one showing. Yay!!!

Now, how can I get it to move to the center?

11 Dec 2007, 4:40 AM
#8
coolscrapbook avatar

coolscrapbook

New Zenner

Join Date:
Nov 2007
Posts:
49
Plugin Contributions:
0

Re: Logo Wrapper settings are not cooperating with me..Help please..

coolscrapbook:

Perfect, now I have one showing. Yay!!!

Now, how can I get it to move to the center?

I'm still looking for the header to be strech with the website at 100% and my logo to float inside and center itself. It's not behaving that way right now. Not sure how to accomplish that.

11 Dec 2007, 5:27 AM
#9
coolscrapbook avatar

coolscrapbook

New Zenner

Join Date:
Nov 2007
Posts:
49
Plugin Contributions:
0

Re: Logo Wrapper settings are not cooperating with me..Help please..

coolscrapbook:

Perfect, now I have one showing. Yay!!!

Now, how can I get it to move to the center?

coolscrapbook:

I'm still looking for the header to be strech with the website at 100% and my logo to float inside and center itself. It's not behaving that way right now. Not sure how to accomplish that.

I figured this one out too. Thank you all for your assistance. In case anyone reads this thread, I added the following to my style sheet to make my header center and stop repeating on a wide screen:

#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: no-repeat;
background-position: center;
background-color: #000000;
height:175px;
margin: auto; }

Thank you "clydejones" and "barco57" for your assistance.

Addie

11 Dec 2007, 9:04 AM
#10
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Location:
West Salem, IL
Posts:
2,845
Plugin Contributions:
0

Re: Logo Wrapper settings are not cooperating with me..Help please..

Your Welcome

I do wonder which version of the cart are you using? and why are you building your template in the classic directory? You should be creating your own template using the overrides sytem. You run the risk of wiping out the template you are buildng if you try and upgrade later.

11 Dec 2007, 12:25 PM
#11
coolscrapbook avatar

coolscrapbook

New Zenner

Join Date:
Nov 2007
Posts:
49
Plugin Contributions:
0

Re: Logo Wrapper settings are not cooperating with me..Help please..

barco57:

Your Welcome

I do wonder which version of the cart are you using? and why are you building your template in the classic directory? You should be creating your own template using the overrides sytem. You run the risk of wiping out the template you are buildng if you try and upgrade later.

Oooh! I didn't think about that! Just being lazy, I started using the classic one cause it was already there, but now that you mention what could happen on an upgrade situation, I starting my new template today!

Thank you for the warning. I'll replace the classic and start using the overrides system.

Marle