Forum Replies Created

Viewing 15 posts - 991 through 1,005 (of 1,124 total)
  • Author
    Posts
  • in reply to: Reveal Animations #2544
    Andy
    Keymaster

    With the reveal animations turned on, then in Additional CSS in the customizer, add this:

    #colophon .reveal{
    animation-name: none !important;
    }
    Andy
    Keymaster
    in reply to: Sidebar in Woocommerce shop not keeping its settings. #2541
    Andy
    Keymaster

    Hi Jay

    Using our demo site, I have tried to recreate this and cannot recreate the issue you are seeing.

    In the customizer; if you set the sidebar width to 0 or save it with an empty value, the sidebar will default to the 28% default width on the live site.

    Please could you let me know the URL of your site and I will be able to take a look and see if there is anything that could be causing this.

    in reply to: How to change button color #2511
    Andy
    Keymaster

    The button in that image is created with the Beaver Builder plugin and is separate from and unconnected to the theme.

    As we are not the authors/developers of the Beaver Builder plugin we are unable to offer support for it. There may be a setting in the plugin to change button colors, but in any case I would recommend you look at the Beaver Builder plugin support page for more information.

    in reply to: Headings underline image #2507
    Andy
    Keymaster

    No, the Beaver Builder plugin is nothing to do with us. It is a completely separate plugin and none of our themes will ever install third-party plugins without permission.

    As it would be impossible to develop the theme to take account of all the potentially millions of combinations of theme/plugin/site configurations, in the theme settings there is the option to turn off the headings underline image.

    ‘Appearance’ > ‘Customize’ > ‘Theme Options’ > [] Disable Headings Underline

    in reply to: Trying to make the background of my pages static #2503
    Andy
    Keymaster

    Hi Ryan, thank you for the kind words and glad you are enjoying the theme.

    To remove the header image scrolling effect so that it will scroll the same as the rest of the content, add this css in ‘Additional CSS’ in the customizer:

    .main-header{
    transform: translateY(0) !important;
    }
    in reply to: Header Image #2408
    Andy
    Keymaster

    To remove the header background image on the homepage add this to Additional CSS (or in your child theme’s style.css):

    .home .main-header {
        background-image: none;
    }
    in reply to: Header Image #2382
    Andy
    Keymaster

    OK, change that code for this and let me know if the slider is displayed

    if ( ! is_page_template( 'template-blank-canvas.php' ) ) {
        if ( is_front_page() ) {
            echo '<header class="main-header">';
            putRevSlider( 'Featured Posts' );
            echo'</header>
            <div class="container clearfix">';
        } else {
            trusted_header_title();
        }
    }
    in reply to: Header Image #2379
    Andy
    Keymaster

    OK, change is_home() to is_front_page() and try this:

    if ( ! is_page_template( 'template-blank-canvas.php' ) ) {
        if ( is_front_page() ) {
            echo '<header class="main-header" style="height: 500px;">
            <p>testing: some text here</p>
            </header>
            <div class="container clearfix">';
        } else {
            trusted_header_title();
        }
    }

    and let me know if you see testing: some text here on the home page.

    in reply to: Header Image #2372
    Andy
    Keymaster

    Yes it should be OK. It looks like putRevSlider() is Revolution Slider’s built-in function that does similar job to the WordPress do_shortcode() function.

    In the code I gave earlier, I forgot about the blank canvas template condtitonal, so the code to use should be this:

    Replace this code in header.php file:

    if ( ! is_page_template( 'template-blank-canvas.php' ) ) {
    	trusted_header_title();
    }

    with this code:

    if ( ! is_page_template( 'template-blank-canvas.php' ) ) {
        if ( is_home() ) {
            putRevSlider( 'Featured Posts' );  
        } else {
            trusted_header_title();
        }
    }
    in reply to: Header Image #2367
    Andy
    Keymaster

    It is possible using a slider plugin. You would need some php knowledge.
    You could copy the header.php file to a child theme and change it to display the content from a slider plugin.

    For example, in the header.php file there is the trusted_header_title() function which prints out the header image/title/excerpt etc, and you could make changes so that it displays a slider instead based on certain conditions.

    e.g. to show slider only on home page:

    if ( is_home() ) {
        echo do_shortcode( '[slider-plugin-shortcode]' );
    } else {
        trusted_header_title();
    }

    replacing slider-plugin-shortcode with the actual shortcode for whatever plugin you use.

    in reply to: Moving the Middle Footer #2278
    Andy
    Keymaster

    Yes there is. The correct way is to make changes to the footer.php file in a child theme.

    A child theme inherits everything from the parent theme, unless overridden in the child theme.
    For example, you would use your own footer.php file in the child theme and this file would be used in instead of the parent theme’s footer.php file.
    Copy the Trusted Pro footer.php file to the child theme and make the necessary changes so that the middle footer is output above the top footer.

    Andy
    Keymaster

    Hi Felicity

    To change the size of the button, add this in Appearance > Customize > Additional CSS:

    #cta-section a.button {
    font-size: 18px;
    padding: 10px 20px;
    }

    change the font size and the padding to the values you need to make it smaller.

    Social media icons can be added to the ‘Excerpt’ of the page you selected for the button link.
    It requires a little bit of html markup to add icons in the excerpt area, example:
    <a href="http://facebook.com/link-to-my-fb-page"><i class="fa fa-facebook"></i></a>
    change facebook (the part after fa fa-) to the icon you wish to show and also the link to your social media profile, example:
    <a href="http://twitter.com/mytwitterhandle"><i class="fa fa-twitter"></i></a>

    You can use any of the these FontAwesome icons.

    in reply to: how to change the typographic of the menu bar #2258
    Andy
    Keymaster

    It is possible your browser may have cached the older version of javascript file that updates the customizer live preview.

    Can you try logging out of your dashboard, close browser, then login again. Or clear your browser cache and see if it works.

    in reply to: how to change the typographic of the menu bar #2254
    Andy
    Keymaster

    Hi Alexander

    For the main menu typography, there is a small typo in the code of version 1.0.5 that has now been fixed in version 1.0.6.

    If you update the theme to latest version the menu bar typography/font selection will work correctly.

    Please accept our sincere apologies for any inconvenience caused by this error.

Viewing 15 posts - 991 through 1,005 (of 1,124 total)