Re: Apple Zen Support Thread
Quote:
Originally Posted by
thedidgmaster
Ya, I figured out the color and the logo, but what about the other part in the header that says "to change color..."
www.store.thedidgmaster.ca
Thanks
Text like that is usually in a language file.
Go to "tools", "Developers tool kit" and do a search for a chunk of the text, lets say use site colors. Be sure to choose either the language file search option, or the bottom option, which searches all files, and also be sure to choose "Catalog" from the drop down menu.
That will tell you where to adjust the text, and now you know how to find other stuff in the future!
Re: Apple Zen Support Thread
Hi Jettrue,
I like your drop-down menu. But when my product categories have too many sub-level below, it seems a bit annoying later to navigate through the drop down menu flying across the entire screen..
is there a way i can specify how many levels of fly-out.. say after 3 sublevel down, the rests of the category are listed within the last sublevel in the main content area? is this possible?
thanks!
natalia
Re: Apple Zen Support Thread
Quote:
Originally Posted by
jettrue
What software is telling you this? Is that Google Desktop? Does it actually fill a gap in your browsing experience? :laugh:
Do they have a link where I can report a false positive?
"This page is very likely to have been designed to trick users into sharing personal or financial information." What a load of carp!
That's what I thought! Get over to...
http://www.stopbadware.org/reports/c...ct=stopbadware
and then click the "send site for review" link at the bottom.
Re: Apple Zen Support Thread
I have a question about the drop down menus. If I select the green DDM, they're centered. But if I select any of the other 3 colors, they are located to the left of the page? How would I center the other menu bars?
Re: Apple Zen Support Thread
Jade,
Found a bug, but not yours! If you look at the contact us page you will notice that the bottom field is not properly aligned for the Message area:
open tpl_contact_us_default.php and go to line 72 (or so) and look at the entry for "enquiry".
The <label> is missing it's class: class="inputLabel"
This will fix the offset of "Message:"
HOWEVER, I cannot seem to get the textarea to line up on the left correctly.
Any ideas? I have tried several things in the CSS to fix this by no success so far.
Also, it seems that zen_draw_textarea_field() does not respect the width parameter....?
Re: Apple Zen Support Thread
Quote:
Originally Posted by
chadderuski
HOWEVER, I cannot seem to get the textarea to line up on the left correctly.
Any ideas? I have tried several things in the CSS to fix this by no success so far.
Also, it seems that zen_draw_textarea_field() does not respect the width parameter....?
Found it! In sytlesheet.css I had formated the TEXTAREA with different margins then INPUT.
Curious: do you know how to specify a specific TEXTAREA for formatting?
I have tried TEXTAREA.enquiry but it doesn't seem to work.... ???
Re: Apple Zen Support Thread
Quote:
Originally Posted by
thedidgmaster
I have a question about the drop down menus. If I select the green DDM, they're centered. But if I select any of the other 3 colors, they are located to the left of the page? How would I center the other menu bars?
They're all centered, my guess is (i've seen this before) that you didn't comment out the colors correctly. Be *very* careful with the comments. Could I see a link?
Re: Apple Zen Support Thread
Quote:
Originally Posted by
chadderuski
Jade,
Found a bug, but not yours! If you look at the contact us page you will notice that the bottom field is not properly aligned for the Message area:
open tpl_contact_us_default.php and go to line 72 (or so) and look at the entry for "enquiry".
The <label> is missing it's class: class="inputLabel"
This will fix the offset of "Message:"
HOWEVER, I cannot seem to get the textarea to line up on the left correctly.
Any ideas? I have tried several things in the CSS to fix this by no success so far.
Also, it seems that zen_draw_textarea_field() does not respect the width parameter....?
Textarea's have its own section in the css. If you want it to line up, it looks like changing its width to 97 does the trick:
TEXTAREA {
margin:auto;
display:block;
width:97%;
}
As far as it not respecting its width, that's because I set it as 97% wide in the css. If you'd like that aspect gone, the code below will let it use its own width, and will also align:
TEXTAREA {
margin:auto;
display:block;
float:left;
margin:.5em;
}
Re: Apple Zen Support Thread
Quote:
Originally Posted by
chadderuski
Found it! In sytlesheet.css I had formated the TEXTAREA with different margins then INPUT.
Curious: do you know how to specify a specific TEXTAREA for formatting?
I have tried TEXTAREA.enquiry but it doesn't seem to work.... ???
Sorry, I didn't look at this one before I replied.
Try TEXTAREA#enquiry (i think its funny that "enquiry" is spelled "encorrectly") :-)
You could also target that specific page, like this:
#contactusBody TEXTAREA
Re: Apple Zen Support Thread
I have just installed this factastic template, and i love it, but i'm having a problem when i use the checkout area when i go to the second step i get a blank page.
Help please
:smile:Noelia