Thread: Westminster New

Page 94 of 187 FirstFirst ... 44849293949596104144 ... LastLast
Results 931 to 940 of 1865
  1. #931
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by Purecarsound View Post
    Hi Anne

    I hope you can help with this one, I've searched through the thread but couldn't find an answer (I will apologise if I have missed the answer somewhere!)

    On Mobile Views (mainly on Iphone4 and on my Galaxy S5 Mini) the 'Hamburger' Icon is not showing. I tested views using Firefox Web Developer (responsive design view), image attached shows the results of the Firefox testing and also a screenshot of my S5 Mini view.

    Attachment 15215

    As I mentioned, i've worked through the whole forum thread and applied any updated files etc.

    Many thanks

    Mark
    If you post a link to your site I can take a look.

    Thanks,

    Anne

  2. #932
    Join Date
    May 2006
    Location
    Chester, UK
    Posts
    99
    Plugin Contributions
    0

    Default Re: Westminster New

    Quote Originally Posted by picaflor-azul View Post
    If you post a link to your site I can take a look.

    Thanks,

    Anne
    Hi Anne, apologies, it's www.johnwoodsmotorcare.net/Cart

    Mark.

  3. #933
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by Purecarsound View Post
    Hi Anne, apologies, it's www.johnwoodsmotorcare.net/Cart

    Mark.
    Adjust line 290 in the repsonsive_mobile.css file. If you move things around or customize the template you may have to make css adjustments to the other elements. Be sure that you do a good test before you go live.

    Thanks,

    Anne

  4. #934
    Join Date
    Nov 2004
    Posts
    364
    Plugin Contributions
    0

    Default Re: Westminster New

    I noticed that the demo version has zen colorbox installed, but the download doesn't seem to include that? Is zen colorbox what does the image hover effect on the product details page?

    Thanks!
    Experience is what you get when you don’t get what you want…

  5. #935
    Join Date
    Nov 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Westminster New

    Couple of points whilst testing this...

    With varying discount quantities the box did not align centrally like this :

    Original.png

    I had a hunt and did the following :

    includes/templates/westminster_new/templates/tpl_modules_products_quantity_discounts.php

    (not sure about this first one)

    @@ -14,7 +14,7 @@
    <?php
    if ($zc_hidden_discounts_on) {
    ?>
    - <table border="0" cellspacing="2" cellpadding="2">
    + <table class="QuantityDiscountCenter" border="0" cellspacing="2" cellpadding="2">
    <tr>
    <td colspan="1" align="center" class="dark">
    <?php echo TEXT_HEADER_DISCOUNTS_OFF; ?>

    (This is where it helped)

    @@ -27,7 +27,7 @@
    </tr>
    </table>
    <?php } else { ?>
    - <table border="0" cellspacing="2" cellpadding="2">
    + <table class="QuantityDiscountCenter" border="0" cellspacing="2" cellpadding="2">
    <tr>
    <td colspan="<?php echo $columnCount+1; ?>" align="center" class="dark">
    <?php


    I then added the following to stylesheet.css

    #productQuantityDiscounts td{border-bottom:1px solid #ddd;border-left:1px solid #ddd;border-right:1px solid #ddd;}
    .dark{background:#ddd;padding:10px 15px;}
    .addthis_sharing_toolbox{width:53%;margin:0 auto;}
    +table.QuantityDiscountCenter {margin-left:auto; margin-right:auto;}

    Centred.png

    I am not sure that is a good solution but it seems to work for me (can't test on IE)

    On another note, using Mini Opera I struggle to scroll the Categories menu. The second I touch the screen to scroll down the categories, the page starts to move down and then menu disappears. Dolphin and the built in Android browser are fine. Haven't solved that one yet !

    B. Rgds
    John

  6. #936
    Join Date
    Oct 2014
    Location
    Jersey CI
    Posts
    6
    Plugin Contributions
    0

    Default Re: Westminster New

    Quote Originally Posted by picaflor-azul View Post
    What version of zen cart are you running?

    You can remove all of the installer files for the admin and install the sql manually.

    Thanks,

    Anne
    Sorry am really new at this

    Where is the sql file? or is it the php file that is in the installer folder?

    As mentioned before I am running Zen Cart Version 1.5.4.

  7. #937
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by kwright View Post
    I noticed that the demo version has zen colorbox installed, but the download doesn't seem to include that? Is zen colorbox what does the image hover effect on the product details page?

    Thanks!
    I think that you were looking at the premium version of the template. The free version does have zen lightbox installed. I will be switching it over to zen color box on the next update.

    Thanks,

    Anne

  8. #938
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by reetp View Post
    Couple of points whilst testing this...

    With varying discount quantities the box did not align centrally like this :

    Original.png

    I had a hunt and did the following :

    includes/templates/westminster_new/templates/tpl_modules_products_quantity_discounts.php

    (not sure about this first one)

    @@ -14,7 +14,7 @@
    <?php
    if ($zc_hidden_discounts_on) {
    ?>
    - <table border="0" cellspacing="2" cellpadding="2">
    + <table class="QuantityDiscountCenter" border="0" cellspacing="2" cellpadding="2">
    <tr>
    <td colspan="1" align="center" class="dark">
    <?php echo TEXT_HEADER_DISCOUNTS_OFF; ?>

    (This is where it helped)

    @@ -27,7 +27,7 @@
    </tr>
    </table>
    <?php } else { ?>
    - <table border="0" cellspacing="2" cellpadding="2">
    + <table class="QuantityDiscountCenter" border="0" cellspacing="2" cellpadding="2">
    <tr>
    <td colspan="<?php echo $columnCount+1; ?>" align="center" class="dark">
    <?php


    I then added the following to stylesheet.css

    #productQuantityDiscounts td{border-bottom:1px solid #ddd;border-left:1px solid #ddd;border-right:1px solid #ddd;}
    .dark{background:#ddd;padding:10px 15px;}
    .addthis_sharing_toolbox{width:53%;margin:0 auto;}
    +table.QuantityDiscountCenter {margin-left:auto; margin-right:auto;}

    Centred.png

    I am not sure that is a good solution but it seems to work for me (can't test on IE)

    On another note, using Mini Opera I struggle to scroll the Categories menu. The second I touch the screen to scroll down the categories, the page starts to move down and then menu disappears. Dolphin and the built in Android browser are fine. Haven't solved that one yet !

    B. Rgds
    John
    There is a patch posted to the thread that fixes the slimmenu bug.

    Thanks,

    Anne

  9. #939
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Westminster New

    Quote Originally Posted by flymo77 View Post
    Sorry am really new at this

    Where is the sql file? or is it the php file that is in the installer folder?

    As mentioned before I am running Zen Cart Version 1.5.4.
    The installer should run with no problems on 1.5.4

    I would try uploading the template package files again.

    Thanks,

    Anne

  10. #940
    Join Date
    Nov 2004
    Posts
    364
    Plugin Contributions
    0

    Default Re: Westminster New

    Just noticed that both the Westminster and Winchester temples have a disappearing goto TOP slider when viewed in portrait mode on an iPhone 3GS (I know it's old, but it's the only apple phone I have). In other words, it appears as long as finger-down on the screen and disappears when you lift your finger. Landscape view works correctly...
    Experience is what you get when you don’t get what you want…

 

 

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