Thread: Westminster New

Page 177 of 187 FirstFirst ... 77127167175176177178179 ... LastLast
Results 1,761 to 1,770 of 1865
  1. #1761
    Join Date
    Mar 2006
    Location
    Auckland, New Zealand
    Posts
    234
    Plugin Contributions
    0

    Default Re: Problem with installation -

    Thank you very much for your comments, and even more so re the change in </br> :-)
    That will save me some typing time!

    I'm trying to get the right fonts in for my tagline "The Art of Bespoke Aromatherapy" however that can wait until I've worked out how the fonts work in this version.
    Elemi

    The Art of Bespoke Aromatherapy
    www.AmorAromatherapy.co.nz

  2. #1762
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,154
    Plugin Contributions
    11

    Default Re: Problem with installation -

    Just keep in mind that no matter how pretty a font you pick, it might be substituted by the browser. Make sure the font is going to show up on the other end.

  3. #1763
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Westminster New

    I'm sure it's been asked, but given the number of posts, searching for the answer is a daunting task. So, here's hoping for a response.

    When I hover over a product name, which is in dark grey, it vanishes, or, blends in with the white background. How can I change this so when you hover over a product name, you can still see it, just maybe a different color? Does that make any sense?

    I'm using zen-cart-v1.5.7-06232020
    Wesninster-New 2.0

    You can see what I mean here: https://www.flowertownengravable.gif...dex&cPath=1_36

    Thanks.
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  4. #1764
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,154
    Plugin Contributions
    11

    Default Re: Westminster New

    You'll need to look at your stylesheets for an a:hover that is white, #FFF, or #FFFFFF.

    Probably, line 496 of stylesheet.css. Change the color to something that works and meets contrast requirements.

  5. #1765
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Westminster New

    Quote Originally Posted by dbltoe View Post
    You'll need to look at your stylesheets for an a:hover that is white, #FFF, or #FFFFFF.

    Probably, line 496 of stylesheet.css. Change the color to something that works and meets contrast requirements.
    Thank you! That worked perfectly. You were spot on.
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  6. #1766
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,154
    Plugin Contributions
    11

    Default Re: Westminster New

    Glad that worked.

    You have a nested code error in your template's What's New sidebox. It's adding a div inside an <a> tag.

    Page and accessibility errors - https://wave.webaim.org/report#/http...26cPath%3D1_36

    Might want to get a favicon from https://favicomatic.com/ Recommend the "Every #$@# size, sir!" Then add the list to includes/templates/YOUR_TEMPLATE/common/html_header.php. Should wind up looking like this around line 60
    Code:
    <?php if (defined('FAVICON')) { ?><link rel="apple-touch-icon-precomposed" sizes="57x57" href="apple-touch-icon-57x57.png" />
    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114.png" />
    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72.png" />
    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144x144.png" />
    <link rel="apple-touch-icon-precomposed" sizes="60x60" href="apple-touch-icon-60x60.png" />
    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="apple-touch-icon-120x120.png" />
    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="apple-touch-icon-76x76.png" />
    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="apple-touch-icon-152x152.png" />
    <link rel="icon" type="image/png" href="favicon-196x196.png" sizes="196x196" />
    <link rel="icon" type="image/png" href="favicon-96x96.png" sizes="96x96" />
    <link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
    <link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
    <link rel="icon" type="image/png" href="favicon-128.png" sizes="128x128" />
    <meta name="application-name" content="&nbsp;"/>
    <meta name="msapplication-TileColor" content="#FFFFFF" />
    <meta name="msapplication-TileImage" content="mstile-144x144.png" />
    <meta name="msapplication-square70x70logo" content="mstile-70x70.png" />
    <meta name="msapplication-square150x150logo" content="mstile-150x150.png" />
    <meta name="msapplication-wide310x150logo" content="mstile-310x150.png" />
    <meta name="msapplication-square310x310logo" content="mstile-310x310.png" />
    <?php } //endif FAVICON ?>
    Lastly, you might want to rethink the size of your logo. Most folks want to see product when going to a site (or at least a link to it) but, the size of your image puts all that below the fold.

  7. #1767
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Westminster New

    Thank you again. This is all very helpful and I'm taking it to heart. Where do I upload all of the favicon images?


    Quote Originally Posted by dbltoe View Post
    Glad that worked.

    You have a nested code error in your template's What's New sidebox. It's adding a div inside an <a> tag.

    Page and accessibility errors - https://wave.webaim.org/report#/http...26cPath%3D1_36

    Might want to get a favicon from https://favicomatic.com/ Recommend the "Every #$@# size, sir!" Then add the list to includes/templates/YOUR_TEMPLATE/common/html_header.php. Should wind up looking like this around line 60
    Code:
    <?php if (defined('FAVICON')) { ?><link rel="apple-touch-icon-precomposed" sizes="57x57" href="apple-touch-icon-57x57.png" />
    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114.png" />
    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72.png" />
    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144x144.png" />
    <link rel="apple-touch-icon-precomposed" sizes="60x60" href="apple-touch-icon-60x60.png" />
    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="apple-touch-icon-120x120.png" />
    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="apple-touch-icon-76x76.png" />
    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="apple-touch-icon-152x152.png" />
    <link rel="icon" type="image/png" href="favicon-196x196.png" sizes="196x196" />
    <link rel="icon" type="image/png" href="favicon-96x96.png" sizes="96x96" />
    <link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
    <link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
    <link rel="icon" type="image/png" href="favicon-128.png" sizes="128x128" />
    <meta name="application-name" content="&nbsp;"/>
    <meta name="msapplication-TileColor" content="#FFFFFF" />
    <meta name="msapplication-TileImage" content="mstile-144x144.png" />
    <meta name="msapplication-square70x70logo" content="mstile-70x70.png" />
    <meta name="msapplication-square150x150logo" content="mstile-150x150.png" />
    <meta name="msapplication-wide310x150logo" content="mstile-310x150.png" />
    <meta name="msapplication-square310x310logo" content="mstile-310x310.png" />
    <?php } //endif FAVICON ?>
    Lastly, you might want to rethink the size of your logo. Most folks want to see product when going to a site (or at least a link to it) but, the size of your image puts all that below the fold.
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  8. #1768
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,154
    Plugin Contributions
    11

    Default Re: Westminster New

    In the root.

  9. #1769
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Westminster New

    Also, I'm sure where or how to fix the nested error you mentioned in my What's New Sidebox.

    Thanks,
    Tom
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  10. #1770
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Westminster New

    Yep, got it. Thanks. Now, how do I fix that nested code error?
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

 

 

Similar Threads

  1. v155 Getting ajax error in v155 with v154 Westminster template
    By godt in forum General Questions
    Replies: 3
    Last Post: 11 Jul 2016, 12:41 AM
  2. v155 Getting ajax error in v155 with v154 Westminster template
    By MCS_Computers in forum General Questions
    Replies: 10
    Last Post: 21 Mar 2016, 03:58 PM
  3. v154 Modifying Top Menu - Westminster New
    By chelseaneedshelp in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 27 Mar 2015, 04:28 PM
  4. Westminster New doesn't work on mobile phone
    By Pompidompie in forum Addon Templates
    Replies: 3
    Last Post: 26 Mar 2015, 10:34 PM
  5. v151 westminster new Share and Connect
    By Larry0652 in forum Addon Templates
    Replies: 8
    Last Post: 24 Oct 2014, 03:30 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR