Page 1 of 2 12 LastLast
Results 1 to 10 of 1685

Hybrid View

  1. #1
    Join Date
    Oct 2007
    Posts
    412
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Thanks, I got that enabled now. Am I correct that there is no option to show the small additional images below the main image, instead of the 'Additional images' button?

  2. #2
    Join Date
    Oct 2007
    Posts
    412
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Is there a setting for making the top navigation bar same width as the rest of the page?
    Header Container Type, Main Content Container Type and Footer Container Type in Bootstrap Template Settings is set to 'container'.

    Also, is there a setting to make the width of the whole 'container' a bit wider? (red arrow in image below)

    Click image for larger version. 

Name:	screenshot-www_nordfield_com-2024_11_26-10_50_37.jpg 
Views:	84 
Size:	36.0 KB 
ID:	20805

  3. #3
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,949
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by DML73 View Post
    Is there a setting for making the top navigation bar same width as the rest of the page?
    Header Container Type, Main Content Container Type and Footer Container Type in Bootstrap Template Settings is set to 'container'.

    Also, is there a setting to make the width of the whole 'container' a bit wider? (red arrow in image below)

    Click image for larger version. 

Name:	screenshot-www_nordfield_com-2024_11_26-10_50_37.jpg 
Views:	84 
Size:	36.0 KB 
ID:	20805
    Top navigation bar, hmm. A CSS setting for that doesn't currently 'pop out' at me.

    For the "whole container" width, that would result in the overrides of various CSS media queries at the Bootstrap 4 breakpoints, similar to:
    Code:
    @media (min-width: 1200px) {
        .container { max-width: 1140px; }
    }
    Those breakpoints and the associated default max-widths are

    576px ..... 540px
    768px ..... 720px
    992px ..... 960px
    1200px ... 1140px

    P.S. Be sure to make this and other styling changes in the /css/site_specific_styles.php (rename or copy the dist.site_specific_styles.php). That'll make sure that your styling customizations survive a template upgrade more easily.

  4. #4
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,949
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by DML73 View Post
    Thanks, I got that enabled now. Am I correct that there is no option to show the small additional images below the main image, instead of the 'Additional images' button?
    You're correct; that'd be custom code.

  5. #5
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by lat9 View Post
    You're correct; that'd be custom code.
    For the additional images carousel, is it possible to change the left / right arrow?

    They are barely visible in my situation. Maybe something like a white square with black chevron?

    here is an example https://www.royal-fleur.com/christma...as-centerpiece

    Also can the speed of the slide be increase or reduce.

    Thank you

  6. #6
    Join Date
    Aug 2004
    Posts
    823
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Perhaps try to add the following CSS to your stylesheet:

    Code:
    /* Change the color of Font Awesome chevron arrows */
    .carousel-control-next i,
    .carousel-control-prev i {
        color: #FFD700;
    }
    That would change the color to Yellow, but you can adjust the hex value to whatever desired color works best for you.
    - Jeff

  7. #7
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Jeff_Mash View Post
    Perhaps try to add the following CSS to your stylesheet:

    Code:
    /* Change the color of Font Awesome chevron arrows */
    .carousel-control-next i,
    .carousel-control-prev i {
        color: #FFD700;
    }
    That would change the color to Yellow, but you can adjust the hex value to whatever desired color works best for you.
    thank you

  8. #8
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Jeff_Mash View Post
    Perhaps try to add the following CSS to your stylesheet:

    Code:
    /* Change the color of Font Awesome chevron arrows */
    .carousel-control-next i,
    .carousel-control-prev i {
        color: #FFD700;
    }
    That would change the color to Yellow, but you can adjust the hex value to whatever desired color works best for you.
    I gave it a shot but somehow it being overwritten by another "file" named <style>

  9. #9
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,949
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by nicksab View Post
    I gave it a shot but somehow it being overwritten by another "file" named <style>
    Create (if not already present) a file in the template's /css directory named site_specific_styles.php. That CSS is loaded as the very last bit of styling, so adding the changes you want to have precedence ... will.

  10. #10
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,701
    Plugin Contributions
    11

    Default Re: ZCA Bootstrap Template

    @nicksab

    Just a reminder that the site_specific_styles.php file should have the following as a minimum:
    Code:
    <?php ?>
    <style>
       /* Your content here ... */
    </style>
    Replace everything in red with your css code. With lat9's suggestion, it would look like:

    Code:
    <?php 
    ?>
    <style>
       .carousel-control-next i, .carousel-control-prev i {
        color: #FFD700; 
    }
    </style>
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 107
    Last Post: 11 Nov 2024, 08:28 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

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