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

    fatcatgraphics
    Participant

    I went to my dashboard and its not showing it has an update. I also went to my plugins and no update there either.
    Could you take a quick glance on how i have it set up and tell me if its completely wrong or not? I currently have the words as images Ive tried it as text and it wasn’t working either. I created a completely blank, no video slider with a word of text and it worked. But when i try to add the video on a slide it hides the text.

    #642115

    fatcatgraphics
    Participant

    I RECREATED THE ORIGINAL SLIDER “WAVEMOVIE”
    AND ITS CALLED “THIS IS IT” ITS ALL TEXT BUT THE TEXT IS STILL NOT RESPONSIVE ๐Ÿ™
    GOING TO LOSE MY MIND.

    #642277

    Lely
    Moderator

    Hello There,

    In that case you can update the theme manually. Just download the latest version from Themeforest and replace the theme from wp-contents/themes/x. (Donโ€™t forget to take a backup of your old theme.)

    Follow this update guide โ€“ https://community.theme.co//kb/updating-your-theme-and-plugins/

    For the video, like on this demo:http://theme.co/x/demo/integrity/1/, we are using the transparent slide. Then under Page settings where you want the slider to appear, you will see Slider Settings:Above Masthead | Slider Settings: Below Masthead. When you select the slider from the dropdown, there’s an Optional Video Background Option. Enter the URL for the video and the Video Poster Image( for Mobile).

    For the text, you can add a class on the Attributes tab, then define it in CSS. For example, on the class field, you add text-one, then we can add the following on your Customizer’s CSS:

    @media (max-width: 979px){ /*For tablet size*/
    .text-one{
       font-size: 25px;
    }
    }
    @media (max-width: 480px){ /*For mobile*/
    .text-one{
       font-size: 20px;
    }
    }
    

    Hope this helps.

    #644756

    fatcatgraphics
    Participant

    Ok this was helpful. I appreciate it. However the video wont show on my ipad. The words do but not the video.

    #645093

    Jade
    Moderator

    Hi there,

    We disabled the background video for a few development reason on mobile devices, among them are performance. When downloading this resources on mobile devices it can really intensive, specially on lesser data plans. So we turn that off and in place of the video, you can take maybe a screenshot of the video or just something that works in place off it that will work on mobile devices and still give the same visual impact. But wont take quiet big amount of data that it takes to download that video to your phone.

    #780188

    Verbier Kev
    Participant

    Hi,
    I appear to have a horrible white gap above and below my slider unlike the demo version (which I like)

    How do I get rid of the white above and below? (one it looks horrible, two its wasting space)

    http://ec2-50-112-243-57.us-west-2.compute.amazonaws.com/

    #780866

    Lely
    Moderator

    Hi There,

    The slider has a container div sliderr . This div is define in CSS like below:

    .sliderr {
        margin-top: 55px;
    }

    Please update above CSS to this:

    .sliderr {
        margin-top: 25px;
    }

    To remove the white space between the slider and the bar line with text BLOGS inside, please add the following CSS:

    .home .x-container>.offset {
        margin: 0px auto;
    }

    Hope this helps.