Re: Apple Zen Support Thread
Yes all sideboxes are off.
THANK YOU SO MUCH that worked even though I think I may still need to resize the header or logo image or adjust the center column.
I also noticed these issues I'm having these issues as well.
Under Home if you select ALL PRODUCTS none of the pictures show up?
Is that normal?
Thank You Again & I will be sure to get some donations your way.
Quote:
Originally Posted by
jettrue
All your sideboxes are staying off, right? For the main section issue, change .centerColumn to this:
Code:
.centerColumn {
width:100%;
float:left;
margin:0;
padding:0;
text-align:left;
line-height:1.6em;
}
To fix the logo, remove this:
Code:
#logo img {
width:100%;
}
and to center it, change #logoWrapperOuter to this:
Code:
#logoWrapperOuter {
margin:0 auto;
text-align:center;
}
Re: Apple Zen Support Thread
Quote:
Originally Posted by
devon310
Yes all sideboxes are off.
THANK YOU SO MUCH that worked even though I think I may still need to resize the header or logo image or adjust the center column.
I also noticed these issues I'm having these issues as well.
Under Home if you select ALL PRODUCTS none of the pictures show up?
Is that normal?
Thank You Again & I will be sure to get some donations your way.
I see pictures in the ALL PRODUCTS.
Re: Apple Zen Support Thread
Quote:
Originally Posted by
jettrue
I see pictures in the ALL PRODUCTS.
This issue is under Home - ALL PRODUCTS
You see products here? I'm checking in safari & Firefox & see none.
http://www.thewishingwellshop.com/wi...e=products_all
Regards,
Devon
Re: Apple Zen Support Thread
Quote:
Originally Posted by
devon310
Did you turn on images? "Configuration", "All Listing".
Re: Apple Zen Support Thread
Hello,
Yes it is on. Its strange, how can I just remove that link completely?
It's actually unnecessary I think.
I also need to add & remove some links from the drop down menus. I think I saw a post here though about that.
Many Thanks,
Devon
Re: Apple Zen Support Thread
I am also wondering where the code for the white background is located?
Many many thanks.
Warm Regards,
Re: Apple Zen Support Thread
Quote:
Originally Posted by
devon310
I am also wondering where the code for the white background is located?
Many many thanks.
Warm Regards,
I think I found that White BG problem.
now on http://www.thewishingwellshop.com/wi..._page=specials
now they show in one column how do I get these back to show in rows of 3?
Is that in Admin?
Warm Regards,
Re: Apple Zen Support Thread
Quote:
Originally Posted by
devon310
SIGH, I answer this question SO often, LOL, everyone does the SAME thing.
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:center;
}
First of all, there's no such thing as float center.
Second of all, you didn't just change #logo with your change, see the 5 other things after #logo? If you want to center the logo, only change the logo, let the other 5 things keep float:left:
Code:
#logo {text-align:center;}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}
1 Attachment(s)
Re: Apple Zen Support Thread
Please ignore this post unless you are jettrue.
I have attached the image that I PMed you about. Hope it helps!
Re: Apple Zen Support Thread
YOU ROCK!
Thanks & thanks again.
\m/
Quote:
Originally Posted by
jettrue
SIGH, I answer this question SO often, LOL, everyone does the SAME thing.
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:center;
}
First of all, there's no such thing as float center.
Second of all, you didn't just change #logo with your change, see the 5 other things after #logo? If you want to center the logo, only change the logo, let the other 5 things keep float:left:
Code:
#logo {text-align:center;}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}