Page 147 of 155 FirstFirst ... 4797137145146147148149 ... LastLast
Results 1,461 to 1,470 of 1550
  1. #1461
    Join Date
    Apr 2011
    Posts
    507
    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>

  2. #1462
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,345
    Plugin Contributions
    94

    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.

  3. #1463
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,448
    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>

  4. #1464
    Join Date
    Apr 2011
    Posts
    507
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by dbltoe View Post
    @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>
    ok thank you.

  5. #1465
    Join Date
    Apr 2011
    Posts
    507
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by dbltoe View Post
    @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>
    umm I tried the following in site_specific_styles.php

    Code:
    <?php 
    /*
     * BOOTSTRAP 3.6.4
     *
     * Create a file called "site_specific_styles.php" to contain any changes
     * to base css provided by this template. Place site-specific content
     * between the opening and closing style tags.
     *
     * Refer to https://github.com/lat9/ZCA-Bootstrap-Template/wiki/Frequently-Asked-Questions#applying-site-specific-styling
     * for additional information.
     */
    ?>
    <style>
       .carousel-control-next i, .carousel-control-prev i {
        color: #FFD700; 
    }
    </style>
    Nothing happened and when I look at the page source, the file is not being loaded with the rest of the stylesheets.

    What am I missing? site is at royal-fleur dot com for reference

    thank you

  6. #1466
    Join Date
    Apr 2011
    Posts
    507
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    I also try renaming it to royal_specific_styles.php but same results

  7. #1467
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,448
    Plugin Contributions
    11

    Default Re: ZCA Bootstrap Template

    That looks correct but I have no way of knowing if the provided CSS was correct.

    If folks would follow the Posting Tips better, we can provide better help. They're there for a reason.

    In this case, knowing the URL could help me see if the provided rule would actually work.

  8. #1468
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,842
    Plugin Contributions
    11

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by nicksab View Post
    I also try renaming it to royal_specific_styles.php but same results
    this will not work.

    Quote Originally Posted by nicksab View Post
    umm I tried the following in site_specific_styles.php

    Code:
    <?php 
    /*
     * BOOTSTRAP 3.6.4
     *
     * Create a file called "site_specific_styles.php" to contain any changes
     * to base css provided by this template. Place site-specific content
     * between the opening and closing style tags.
     *
     * Refer to https://github.com/lat9/ZCA-Bootstrap-Template/wiki/Frequently-Asked-Questions#applying-site-specific-styling
     * for additional information.
     */
    ?>
    <style>
       .carousel-control-next i, .carousel-control-prev i {
        color: #FFD700; 
    }
    </style>
    Nothing happened and when I look at the page source, the file is not being loaded with the rest of the stylesheets.

    What am I missing? site is at royal-fleur dot com for reference

    thank you
    assuming your royal_fleur template is a clone of bootstrip the file should be here:

    https://www.royal-fleur.com/includes...fic_styles.php

    but alas it is not. so if you are putting that file in the correct position, then it is a permissions issue. as i am not seeing the file there, then it is one of those things: wrong position or wrong permissions.

    if you solve that and it is still not working, i would examine this section of code to ensure you have it in your template:

    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  9. #1469
    Join Date
    Apr 2011
    Posts
    507
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by carlwhat View Post
    this will not work.



    assuming your royal_fleur template is a clone of bootstrip the file should be here:

    https://www.royal-fleur.com/includes...fic_styles.php

    but alas it is not. so if you are putting that file in the correct position, then it is a permissions issue. as i am not seeing the file there, then it is one of those things: wrong position or wrong permissions.

    if you solve that and it is still not working, i would examine this section of code to ensure you have it in your template:

    best.
    thank you.

    my apologies to all. I thought I was suppose to rename the file dist-site_specific_styles.php . Woops.

    I made the changes in site_specific_styles.php afret remove "dist-" from the file name and added to my templates css file.

    It seems working now ( after clearing my cache for the hundreds time)

    Thanks again
    Last edited by nicksab; 6 Dec 2024 at 04:22 AM.

  10. #1470
    Join Date
    May 2009
    Posts
    1,238
    Plugin Contributions
    2

    Default Re: ZCA Bootstrap Template

    In tpl_product_info_display.php I see the if

    $display_price_top === true
    $display_price_bottom === true

    On the product page I see the latter one (inspecting the page I see id="productsPriceBottom-productPriceBottomPrice" class="productPriceBottomPrice")

    I suppose there is a setting somewhere for it, but can't find it, what am I missing?

    I can edit the template file to my likes, just curious to understand the functioning of it.

 

 

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

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