Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #75222

    quitsmirking
    Participant

    I run http://www.g27.net – just got X up and running with a video header.

    I want to have a big title above my video header (and navbar) exactly like this:
    http://www.exponentpr.com/

    How would I do this? Thanks. LOVE the theme.

    #75712

    Rad
    Moderator

    Hi there,

    Thank you for writing in!

    My antivirus detected some malware/virus from your site, JS:Redirector-BTL [Trj] and blocking it.

    For slider, follow these.

    1. Create a page and name it as Homepage as sample (use “Blank – No Container | Header, Footer” template under Page Attribute section ) http://theme.co/x/member/kb/page-templates/
    2. Create a slider with full screen or auto-responsive setting with .masthead offset http://theme.co/x/member/kb/sliders/
    3. Set you new slider above masthead of your Homepage
    4. Set your new Homepage at Admin > Settings > Reading > Front Page.

    Hope this helps.

    #76091

    quitsmirking
    Participant

    I already have an auto-responsive slider above the masthead – I’m looking to add a title/image above that slider, so it goes in this order:

    TEXT/IMAGE TITLE FIELD
    VIDEO SLIDER
    NAVIGATION BAR

    Exactly like this: http://www.exponentpr.com/

    #76605

    Rad
    Moderator

    Hi there,

    Thank you for writing in!

    In that case you have to compose your own content.

    Add this code at your child theme’s functions.php along with your content.

    add_action('x_after_site_begin', function(){
    ?>
    
    <!-- your TEXT/HTML content here -->
    <!-- Example Start -->
    <div class="my_top_section">
    <img src="" />
    </div>
    <style>
    .my_top_section {
    text-align: center;
    }
    </style>
    <!-- Example End -->
    
    <?php
    });

    Cheers!