Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Remove grey border around center section

Remove grey border around center section

Locked

Views: 3,611

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
19 Jul 2006, 3:19 PM
#1
scribbles avatar

scribbles

New Zenner

Join Date:
Jul 2006
Location:
Manitoba, Canada
Posts:
36
Plugin Contributions:
0

Remove grey border around center section

I was able to remove the grey border around my header, logo and footer but how do I remove it from the sides of the main area, you can see it when the page loads and I want to remove it.

You can see it at http://www.scribblescrap.com/cart

:wacko:

19 Jul 2006, 8:54 PM
#2
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: Remove grey border around center section

Remove it from these two sets of styling in your stylesheet_new.css

#navColumnOne {

padding: 0.5em;
border-left: 1px solid #cccccc;

}
#navColumnTwo {
padding: 0.5em;
border-right: 1px solid #cccccc;

}

20 Jul 2006, 12:42 AM
#3
scribbles avatar

scribbles

New Zenner

Join Date:
Jul 2006
Location:
Manitoba, Canada
Posts:
36
Plugin Contributions:
0

Re: Remove grey border around center section

That worked, thank you very much.

:thumbsup:

19 Aug 2006, 11:56 PM
#4
joshuacrapp avatar

joshuacrapp

New Zenner

Join Date:
Jul 2005
Posts:
11
Plugin Contributions:
0

Re: Remove grey border around center section

how do you remove the grey borders from everything? the header, the main navigation?...everything. i suspect its in a css file, but which one?

thanks!!

20 Aug 2006, 12:01 AM
#5
polarduality avatar

polarduality

Zen Follower

Join Date:
Mar 2006
Location:
Los Angeles
Posts:
260
Plugin Contributions:
2

Re: Remove grey border around center section

if you are using a custom template based on template_default, then you need to edit the stylesheet.css file

20 Aug 2006, 2:06 AM
#6
scribbles avatar

scribbles

New Zenner

Join Date:
Jul 2006
Location:
Manitoba, Canada
Posts:
36
Plugin Contributions:
0

Re: Remove grey border around center section

To remove the border around the main nav area you need to edit stylesheet_new.css.

From this:

#navColumnOne {
padding: 0.5em;
border-left: 1px solid #cccccc;
}
#navColumnTwo {
padding: 0.5em;
border-right: 1px solid #cccccc;
}

To This:

#navColumnOne {
padding: 0.5em;
/ border-left: 1px solid #cccccc;/
}
#navColumnTwo {
padding: 0.5em;
/ border-right: 1px solid #cccccc;/
}

All the other borders are in stylesheet_original.css and I just added /* before and / after every place it said border. When you add / before and */ after any line it will exclude that command. It is better to do it this way so if you change your mind you can just remove the /**/ and you can use that line again without having to remeber what you deleted.

Hope this helps.

Dana
:smile:

20 Aug 2006, 3:31 PM
#7
joshuacrapp avatar

joshuacrapp

New Zenner

Join Date:
Jul 2005
Posts:
11
Plugin Contributions:
0

Re: Remove grey border around center section

okay i got that figured out! thanks.
but now how do i remove the borders from around the header and the footer areas? i cant seem to find anything in the css files.

thanks!