Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / New Products For October

New Products For October

Locked

Views: 703

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
25 Oct 2008, 12:03 AM
#1
rickmann08 avatar

rickmann08

New Zenner

Join Date:
Oct 2008
Posts:
56
Plugin Contributions:
0

New Products For October

Okay, I am trying to change the black box to transparent for this section. I thought I found it in my css but when I changed it it made the type transparent. Can anyone help please!!!

http://blackflameclothing.com/catalog/

thanks
Rick

25 Oct 2008, 2:14 AM
#2
pelasgos avatar

pelasgos

New Zenner

Join Date:
Dec 2006
Location:
Athens - Greece
Posts:
71
Plugin Contributions:
0

Re: New Products For October

Rick,

In your stylesheet.css you have

.leftBoxHeading, .centerBoxHeading, .rightBoxHeading (around line 546)

background-color: #000000;

You need to change that to

background-color: transparent;

If you don't want to make transparent .leftBoxHeading and .rightBoxHeading move .centerBoxHeading to a new line

It should work..

George

25 Oct 2008, 2:36 AM
#3
rickmann08 avatar

rickmann08

New Zenner

Join Date:
Oct 2008
Posts:
56
Plugin Contributions:
0

Re: New Products For October

Hey pelasgos, Thanks!

Maybe you can help me out with 2 other small problems.

  1. Do you know how to move the home, login, and search bar so that it would be under the navigation bar?

http://www.blackflameclothing.com/catalog/

Thanks
Rick

26 Oct 2008, 5:01 AM
#5
ronpeled avatar

ronpeled

Zen Follower

Join Date:
Sep 2004
Location:
LA, California
Posts:
111
Plugin Contributions:
0

Re: New Products For October

Nice site! Seems like you know how to handle CSS pretty well. What you may want to do is to move the div with id="navMainWrapper" to under the div with id="logoWrapper". This will probably occur in the tpl_header.php or the main page. You may even need to move the div from one file to another. This is possible since the files under the Common folder of the template are read in sequence.

Hope this helps,

26 Oct 2008, 3:45 PM
#6
rickmann08 avatar

rickmann08

New Zenner

Join Date:
Oct 2008
Posts:
56
Plugin Contributions:
0

Re: New Products For October

Thanks everyone!