1 Attachment(s)
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Hello, I have another question.
I would like to locate credit card images in the middle of white space (or insert white space before).
I am using Inspect element by placing cursor on the images but can not guess which code controls vertical position.
I am intuitively looking for for something like "middle" or "center" or 50%.
Situation is located in the end of the page here
Attachment 17762
This is the goal:
Attachment 17764
This issue hunting me through all web site.
Any suggestion of how to center elements in vertical direction will be appreciated.
1 Attachment(s)
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
This is the goal:
Attachment 17766
from previous post
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Quote:
Originally Posted by
idtags
In your stylesheet.css, around line #445, add a top margin, like:
#ccFooterLogo {
text-align: center;
margin-top: 10px;
}
If that doesn't work, you may want to try cutting that entire div bit and pasting it at bottom of the stylesheet.
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Quote:
Originally Posted by
soxophoneplayer
In your stylesheet.css, around line #445, add a top margin, like:
#ccFooterLogo {
text-align: center;
margin-top: 10px;
}
If that doesn't work, you may want to try cutting that entire div bit and pasting it at bottom of the stylesheet.
Thank you, it worked! :smile:
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Hello Team!
Responsive classic template is working very good.
Little things here and there will be resolved over time.
I have question about fonts of text.
On computer I have arial, which can be changed by browser settings.
On I-phone the same text is Times Roman which is annoying and no way to change it in Safary browser.
How do you stabilize of freeze the Text Font across the platforms, or this is not possible yet?
Using Inspect Element does not show font name (or I am missing it?)
It is not big deal just aesthetic. :smile:
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Hi
Does anyone know if Picaflor Azul still active in writing & sales of ZEN Cart Templates. I am looking at: https://picaflor-azul.com/zen-cart-templates-themes and had some questions in regards to purchases but I don't get any response from Picaflor-azul whether via the message pop up or via email. She wrote to me in late 2016 but looking at her current site, it does not seem active since. Any idea? I saw Dr Byte once acknowledge her contributions to Zen on the responsive template but nothing since.
Thanks, Noi
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
In your stylesheet.css, add font rules to body tag:
body {
margin:0em;
padding:0em;
border:0;
background:#fff;
color:#333;
font-family:Arial, Helvetica, Verdana, sans-serif;
font-size:0.9em;
}
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Thank you dw08gm, it worked well! :smile:
2 Attachment(s)
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
My next challenge is weird.
When I use PC and Inspect element here for I-phone Landscape i see two menu lines in the end of the page:
Attachment 17796
But when I select I-Phone Portrait one menu disappears:
Attachment 17797
To make confusion even worse, when I look on actual I-Phone (not PC simulation) it is wise wersa.
On Portrait there are two menus in Landscape the is only one.
How to make both menus permanent?
Thank you.
Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
Problem is resolved:
In /home/your_domain/public_html/store/includes/templates/your_template/css/responsive_mobile.css
around line #197
replace:
#navCatTabsWrapper, #navEZPagesTop, #navSuppWrapper{display:none;visibility:hidden;}
with
#navCatTabsWrapper, #navEZPagesTop, #navSuppWrapper{display:block;visibility:visible;}