Okay
  Public Ticket #2610321
ABOUT Header
Closed

Comments

  • Mark Bonner started the conversation

    Hi Guys

    Is it possible to remove the space for the ‘Display Hero Section’ header on the ABOUT Page? Ideally, I'd like my content to begin right at the top of that page.

    Also, is it possible to commission ClaPat Studio to create a custom pre-loader for my site using my own branding?

    Best

    Mark

  •  1,822
    Support replied

    Hello Mark,

    Try the following:

    Disable the hero section in the about page options and then in customizer -> general settings make sure you have 'Display Page Title When Hero Section Is Disabled' unchecked

    We don't custom work at the present time we are small team and we are quite busy with releases and support however the preloader is defined in header.php

    <?php if( satelite_get_theme_options('clapat_satelite_enable_preloader') ){ ?>
    <!-- Preloader -->
            <div class="preloader-wrap">
                <div class="outer">
    <div class="inner">
                        <div class="percentage" id="precent"></div>
                        <div class="trackbar">
                            <div class="loadbar"></div>
                        </div>
    <?php if( satelite_get_theme_options('clapat_satelite_bknd_music_url') && satelite_get_theme_options('clapat_satelite_bknd_music_preloader_caption') ){ ?>
                        <div class="headphones"></div>
                        <div class="headphones-text"><?php echo wp_kses_post( satelite_get_theme_options('clapat_satelite_bknd_music_preloader_caption') ); ?></div>
    <?php } ?>
                    </div>
                </div>
            </div>
            <!--/Preloader -->
      <?php } ?>

    and the animation effects in /js/scripts.js

    // Percentage Increment Animation
    var PercentageID = $("#precent"),
    start = 0,
    end = 100,
    durataion = time + 400;
    animateValue(PercentageID, start, end, durataion);



    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Mark Bonner replied

    Thanks so much Guys, good luck with all you are doing. I really appreciated your support during the build of my site, thankyou.