Zen Cart Logo
Forums / Setting Up Categories, Products, Attributes / Labels not appearing for attributes

Labels not appearing for attributes

Locked

Views: 1,093

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
26 Jan 2009, 6:01 AM
#1
stepterr avatar

stepterr

New Zenner

Join Date:
Sep 2008
Posts:
13
Plugin Contributions:
0

Labels not appearing for attributes

All,
I have an issue with my attributes and the labels not appearing. Here's a link to one of the product pages so you can see exactly what is going on. I found another post that said something about a record not appearing in the database for the option, however that is not my case. If you look at the page source you can see that both labels for "Color" and "Size" appear there. So I checked my CSS and everything appears to be correct there. Here is the CSS....

#productAttributes{
float:left;
}
.wrapperAttribsOptions {
margin: 0.3em 0em;
color:#000000;
}

Anyone have any ideas what could be causing this? Is there an option somwhere that I'm missing on the admin side?

30 Jan 2009, 9:01 PM
#2
jrhutch avatar

jrhutch

New Zenner

Join Date:
Jul 2008
Posts:
2
Plugin Contributions:
0

Re: Labels not appearing for attributes

I am having the same issue with my attributes.
They were working a few months back and now nothing in the shopping cart when selected. It appears to not matter if this is a one time charge type of attribute or a freebee.

30 Jan 2009, 9:17 PM
#3
tony_sar avatar

tony_sar

Totally Zenned

Join Date:
Jul 2006
Location:
Montreal, Canada
Posts:
2,276
Plugin Contributions:
0

Re: Labels not appearing for attributes

since you have custom template , you might have broken the code that out puts the attributes Label . you may need to compare your file with your untouched zencart file and see if there are missing codes.

30 Jan 2009, 9:26 PM
#4
jrhutch avatar

jrhutch

New Zenner

Join Date:
Jul 2008
Posts:
2
Plugin Contributions:
0

Re: Labels not appearing for attributes

Thanks for such a quick reply.
Would this be true if I haven't changed the template since I installed it over a year ago? I know it was working at one point 4 months back.

btw I'm on ZC 1.3.7

31 Jan 2009, 3:30 AM
#5
tony_sar avatar

tony_sar

Totally Zenned

Join Date:
Jul 2006
Location:
Montreal, Canada
Posts:
2,276
Plugin Contributions:
0

Re: Labels not appearing for attributes

you have additional stylesheet called
stylesheet_sIFR-screen.css that is being loaded as well. what i found is the around line 45 of that style your have following style block ..

sIFR-hasFlash h4 {styleshe...creen.css (line 45)
font-size:21px;
letter-spacing:-5px;
visibility:hidden;
}

you can set visibility to true .... ie : visibility:true;

if you don't like the way your letter spacing shows ,, you can adjust it using letter-spacing and modify the current value ..

I can only work with single page .. so I don't know how this will effect the rest of your site . but this should show the labels ..

31 Jan 2009, 3:43 AM
#6
tony_sar avatar

tony_sar

Totally Zenned

Join Date:
Jul 2006
Location:
Montreal, Canada
Posts:
2,276
Plugin Contributions:
0

Re: Labels not appearing for attributes

I don't know what sIFR is .. but is effecting all your Headings like h2, h3, h4 .. changing the element of this style might effect the way style might render for intended module that you have installed.

10 Feb 2009, 5:06 AM
#7
stepterr avatar

stepterr

New Zenner

Join Date:
Sep 2008
Posts:
13
Plugin Contributions:
0

Re: Labels not appearing for attributes

tony_sar:

I don't know what sIFR is .. but is effecting all your Headings like h2, h3, h4 .. changing the element of this style might effect the way style might render for intended module that you have installed.

Thanks tony! I'm using sIFR to create my custom fonts. I didn't even think about how that was affecting my headings since the font isn't a heading. Thanks again!