Re: Apple Zen Support Thread
Quote:
Originally Posted by
GoNinja
Hello, Could you reply to my question about changing the order of the stuff?
Which file do I do this in? Just tell me the file and I will figure out the rest. Thanks!
The two green menus you turn off in your admin.
As far as moving the drop down menu, you'll have to open up includes/templates/apple_zen/common/tpl_main_page.php and find the drop menu section and move it to includes/templates/apple_zen/common/tpl_header.php to be above where you want it.
I think this will cause some issues in the css that will need to be addressed.
Re: Apple Zen Support Thread
Thanks for the reply. I checked everywhere in Admin. Can you tell me where this on/off function is? Thanks!
Re: Apple Zen Support Thread
Oh so simple, how did I miss it? Thanks!
Re: Apple Zen Support Thread
Hi again, I have decided that I want to make my apple sen cart into the narrow one that we have instructions for. I have done what was instructed...or so i thought, nearly everything is fine , except for two areas at the top of my page. I dont sem to be able to get rid of these and make my background cover the whole area. thanks again for all your help.
Di http://stitchwith.me/
Re: Apple Zen Support Thread
Does anyone know how I can change color for the "New products for [month]" bar?
http://www.eyecandylens.com/prntscrn.jpg
Re: Apple Zen Support Thread
And how do I change the color for the bars in the sideboxes (e.g. the "Who's Online?" bar)? Thanks. ^^
Re: Apple Zen Support Thread
Quote:
Originally Posted by
GoNinja
Thanks for the reply. I checked everywhere in Admin. Can you tell me where this on/off function is? Thanks!
"Configuration, "Layout Settings", "Categories-Tabs Menu ON/OFF"
"Configuration, "EzPages Settings", "EZ-Pages Display Status - HeaderBar"
Re: Apple Zen Support Thread
Quote:
Originally Posted by
Didee
Hi again, I have decided that I want to make my apple sen cart into the narrow one that we have instructions for. I have done what was instructed...or so i thought, nearly everything is fine , except for two areas at the top of my page. I dont sem to be able to get rid of these and make my background cover the whole area. thanks again for all your help.
Di
http://stitchwith.me/
Remove the background color here:
#headerWrapper {
width:100%;
text-align:center;
margin:0 auto;
background:#fff;
}
Re: Apple Zen Support Thread
Quote:
Originally Posted by
larojiblanca
Does anyone know how I can change color for the "New products for [month]" bar?
Code:
.centerBoxHeading {
margin:0;
background:#eee;
padding:.3em 0;
border-top:2px solid #4f4f4f;
border-bottom:2px solid #4f4f4f;
}
Change the background color there.
Then to change the background color for the Titles of the sideboxes, you can add a background color here:
Code:
h3.leftBoxHeading, h3.rightBoxHeading {background:url(../images/sideboxleft.gif) no-repeat top left;}
like this:
Code:
h3.leftBoxHeading, h3.rightBoxHeading {background:#000000 url(../images/sideboxleft.gif) no-repeat top left;}
(the above would be to make the background behind the titles black)
Re: Apple Zen Support Thread
Wow, thanks so much, that fixed it.
Di