Page 5 of 125 FirstFirst ... 345671555105 ... LastLast
Results 41 to 50 of 1242
  1. #41
    Join Date
    May 2013
    Location
    Ireland
    Posts
    9
    Plugin Contributions
    0

    Default Re: improvements suggestions

    Quote Originally Posted by rbarbour View Post
    @johndoes

    This isn't an easy thing due to using the standard BS CSS which adds a 30px gutter. You can see how this effects the layout here. https://getbootstrap.com/docs/4.0/la.../#how-it-works

    You have 2 options:

    1) Add the following class "red" to line 97 in /includes/templates/bootstrap-mystore/common/tpl_main_page.php
    <div class="container-fluid m-0 p-0" id="mainWrapper">

    then add the following class "red" to line 124
    <div class="row m-3">

    2) You can customize the BS CSS removing the gutters and adding your own paddings in /includes/templates/bootstrap-mystore/css/stylesheet.css
    https://getbootstrap.com/docs/3.3/cu...e/#grid-system
    Thank you.

  2. #42
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I will be uploading Version: 1.0.6 by end of weekend...

    This upgrade includes:

    1.) Several HTML validations (github issue #62)
    2.) Adds Responsive Carousel Banners (github issue #63)
    3.) Adds the PhotoSwipe Lightbox to the document_general_info, document_product_info, page, product_free_shipping_info, product_info, product_music_info, product_reviews, product_reviews_info & product_reviews_write pages (github issue #64)
    4.) Adds Admin controlled Template Colors Configuration (github issue #65)
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  3. #43
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    hello rbarbour - I have realized that I do not know enough about bootstrap to work with this template but I do believe it is the way to go.

    I have a problem in that the index page in my existing template is now showing the text 'Flexible Footer Menu' <indexDefaultHeading> and I am not sure how to remove it even though I have removed all the zca bootstrap template files - any ideas where I should look?

    many thanks,
    Mike

  4. #44
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by shags38 View Post
    hello rbarbour - I have realized that I do not know enough about bootstrap to work with this template but I do believe it is the way to go.
    This template is the ONLY way to go!

    Version 1.0.6 was uploaded Sunday but isn't yet available in the downloads.

    Quote Originally Posted by shags38 View Post
    I have a problem in that the index page in my existing template is now showing the text 'Flexible Footer Menu' <indexDefaultHeading> and I am not sure how to remove it even though I have removed all the zca bootstrap template files - any ideas where I should look?

    many thanks,
    Mike
    Mike,

    More than likely you have a stray language file.

    look in your /includes/languages/english folders

    &

    /includes/languages/english/extra_definitions folders

    but as stated before this is not related to this template and should be posted in the proper thread.
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  5. #45
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by rbarbour View Post
    This template is the ONLY way to go!

    Version 1.0.6 was uploaded Sunday but isn't yet available in the downloads.



    Mike,

    More than likely you have a stray language file.

    look in your /includes/languages/english folders

    &

    /includes/languages/english/extra_definitions folders

    but as stated before this is not related to this template and should be posted in the proper thread.
    Thanks Raymond - your hint at extra_definitions folders did the trick - found it in /includes/languages/english/extra_definitions/flexible_footer_menu in the first block under define('HEADING_TITLE',''); removed Flexible Footer Menu

    cheers,
    Mike

  6. #46
    Join Date
    Jan 2015
    Location
    Cyprus
    Posts
    46
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hi guys,
    Just to ask if the carousel on front page is adjustable and can also take the full width of the page?

  7. #47
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I'm having the devil of a time getting checkbox inputs to show as table-column elements.

    In the responsive_classic and classic templates, the element is "coded" as
    Code:
                        <tr>
                            <td><?php echo TEXT_GROUP_PUBLIC; ?></td>
                            <td><?php echo zen_draw_checkbox_field("group_public[$favorites_group_id]", '', ($group_info['is_public'] == 1)); ?></td>
                        </tr>
    For the bootstrap template, I've wrapped the table with a <div class="table-responsive"> and added the classes "table table-bordered" to the table itself. Then, I modified the checkbox column to read:

    Code:
                        <tr>
                            <td><?php echo TEXT_GROUP_PUBLIC; ?></td>
                            <td><div class="custom-control custom-checkbox"><?php echo zen_draw_checkbox_field("group_public[$favorites_group_id]", '', ($group_info['is_public'] == 1)); ?></div></td>
                        </tr>
    ... but still no checkbox is displayed.

    Anyone have any suggestions?

  8. #48
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    I'm having the devil of a time getting checkbox inputs to show as table-column elements.

    In the responsive_classic and classic templates, the element is "coded" as
    Code:
                        <tr>
                            <td><?php echo TEXT_GROUP_PUBLIC; ?></td>
                            <td><?php echo zen_draw_checkbox_field("group_public[$favorites_group_id]", '', ($group_info['is_public'] == 1)); ?></td>
                        </tr>
    For the bootstrap template, I've wrapped the table with a <div class="table-responsive"> and added the classes "table table-bordered" to the table itself. Then, I modified the checkbox column to read:

    Code:
                        <tr>
                            <td><?php echo TEXT_GROUP_PUBLIC; ?></td>
                            <td><div class="custom-control custom-checkbox"><?php echo zen_draw_checkbox_field("group_public[$favorites_group_id]", '', ($group_info['is_public'] == 1)); ?></div></td>
                        </tr>
    ... but still no checkbox is displayed.

    Anyone have any suggestions?
    Cindy,

    https://getbootstrap.com/docs/4.0/co...#custom-styles

    The ZCA Bootstrap Template uses custom forms.

    An ID must be added to the check box

    And a label must be created
    <label class="custom-control-label" for="***ID****">
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  9. #49
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Thanks, @rbarbour. That corrected the issue I was having.

  10. #50
    Join Date
    Sep 2018
    Location
    London
    Posts
    7
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Hi everyone,

    I need some help with this theme. Not highly expert so please bare with me. I was using a template to design a decent looking website. Ran into unlimited issues so dropped the idea of using third party templates. I downloaded this template and have managed to fiddle around with it a bit, so far to my satisfaction. Mainly turning on and off boxes and similar things.

    Attached is the screenshot with numbers, 1 to 4. I'll explain what I'm trying to do and any help in regards to how to achieve results would be highly appreciated.

    1. Log in. I would like to move the log in to the right side of the page. Next to search box, or find it for me box.
    2. The top menu is same as side menu. I found the setting and it can be disabled/enabled. I'm thinking of editing it but then it means when enabled it will mirror the side menu which is number 4 in the pic.

    What I'm trying to achieve is to have a different menu which stretches to the whole width of the page and in that I can add, drop down sub menus as per need. Question is how do I do it? Can it be done by using css menu and adding it to stylesheet?

    3. That menu needs to go. Simply put. How can I do that?
    4. Side menu is fixed. How to change its width? I saw the option in setting but it says the changes made will not take effect for zca theme. So, how can I go about and change it? Or possibly change it top menu suggestion of making it in css (by coping and pasting from some stylesheet which has some good looking menus) is it possible?

    Any beginner level help would be appreciated. The reason I ditched the idea of third party theme is that no support. So here's to hoping that I'll be able to achieve some results using this theme. Where it says welcome to mobile direct, above it I would like a decent slider for products. Any suggestion to which works better with this build of zen cart version.

    Many thanks in advance for your help and input.

    Cheers.


    P.S. I can locate files and edit using note pad or netbeans, no problem. I'm doing all this locally and not live so I can make the changes and adjust things first. Learn while I do this. Thanks.
    Attached Images Attached Images  

 

 
Page 5 of 125 FirstFirst ... 345671555105 ... LastLast

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 94
    Last Post: 16 Mar 2024, 04:13 PM
  2. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  3. v155 ZCA Bootstrap Template 1.0 (BETA)
    By rbarbour in forum Addon Templates
    Replies: 74
    Last Post: 25 Apr 2018, 07:05 PM
  4. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  5. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 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