Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Help, i need help finding this bit of code

Help, i need help finding this bit of code

Locked

Views: 1,214

Results 1 to 9 of 9
This thread is locked. New replies are disabled.
8 Apr 2009, 11:09 PM
#1
dbj_media avatar

dbj_media

New Zenner

Join Date:
Apr 2009
Posts:
17
Plugin Contributions:
0

Help, i need help finding this bit of code

Hi there:

This is my first zencart customization, i think i got most of it down however i cant seem to get rid of the line between my header and main area of the template.

Also i have installed the Hover 3 with no problem, but what do i change in the admin area to show the products???

My site is
http://www.pioneerevergreenfarms.com/shop/

Thank you in advance :)

8 Apr 2009, 11:25 PM
#2
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,178
Plugin Contributions:
0

Re: Help, i need help finding this bit of code

Dbj,
Locate this:
includes/templates/classic/css/stylesheet.css
Find this:> #navBreadCrumb {

background-color:#FFFFFF;
border-bottom:1px dashed #C86100;
width:650px;
}Change to this:
#navBreadCrumb {
background-color:#FFFFFF;
/border-bottom:1px dashed #C86100;/
width:650px;
}

  1. I noticed you are still using the classic template
  2. take time and read the tab on the top of this page called:
  3. Tutorials/FAQ
  4. Search for:
  5. override system
8 Apr 2009, 11:39 PM
#3
dbj_media avatar

dbj_media

New Zenner

Join Date:
Apr 2009
Posts:
17
Plugin Contributions:
0

Re: Help, i need help finding this bit of code

awsome that worked for IE but not for FF.. any suggestions??

8 Apr 2009, 11:43 PM
#4
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,178
Plugin Contributions:
0

Re: Help, i need help finding this bit of code

Dbj,
What happens when you do this:

#navBreadCrumb {
background-color:#FFFFFF;
width:650px;
}

8 Apr 2009, 11:48 PM
#5
dbj_media avatar

dbj_media

New Zenner

Join Date:
Apr 2009
Posts:
17
Plugin Contributions:
0

Re: Help, i need help finding this bit of code

same thing... ugh!!!!

8 Apr 2009, 11:49 PM
#6
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,178
Plugin Contributions:
0

Re: Help, i need help finding this bit of code

D,
Look great to me in firefox,
Have you downloaded the clear cache key for firefox????

9 Apr 2009, 12:04 AM
#7
dbj_media avatar

dbj_media

New Zenner

Join Date:
Apr 2009
Posts:
17
Plugin Contributions:
0

Re: Help, i need help finding this bit of code

no is it a plug in... let me try to find that.. thank you for being so patient

9 Apr 2009, 12:18 AM
#8
tony_sar avatar

tony_sar

Totally Zenned

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

Re: Help, i need help finding this bit of code

i think due to misplacement of your swfobject.js as it is currently being loaded into the body and not to the head of your site .
you may consider loading js file in head , using zc auto load

9 Apr 2009, 12:33 AM
#9
tony_sar avatar

tony_sar

Totally Zenned

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

Re: Help, i need help finding this bit of code

also , this code

<script type="text/javascript"> var so = new SWFObject("includes/templates/Series_12_Camera/images/flash/header.swf", "YOUR_HEADER", "790", "153", "7", "#FFFFFF"); so.write("flashcontent"); </script>

is writing div with flashcontent to your header.. i guess miss alignment is due to extra div .

also this code producing error .. with message . swfobject.js is not defined .
the reason is that js is not loading in the head .

i am not sure if you are using swfobject.js to load your flash , if so , correct the way things are done . if not , remove all instance of this javascript from your body ..