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

    alaw
    Participant

    Dear Team,

    I’m attempting to remove the scrollbar on the right side of the page so that the slider takes up full height of the page and the grey space is gone.

    Also, is it possible to change the image which appears when the slider is first loading?

    embodimentplayground.com

    Thank you.

    #627121

    Friech
    Moderator

    Hi There,

    Thanks for writing in! On the slider settings, please configure the Slider layout to Full-screen.


    screenshot

    Hope it helps, Cheers!

    #627486

    alaw
    Participant

    Thanks for responding. The setting is currently on Full-Screen.

    #627489

    Friech
    Moderator

    Hi There,

    Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password
    – FTP credentials

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Also if you would not mind, please provide us some screenshot highlighting the issue.

    Thanks!

    #628058

    alaw
    Participant
    This reply has been marked as private.
    #628194

    Nabeel A
    Moderator

    Hi again,

    Thanks for providing the credentials, To remove the scroll from the homepage please add the following jQuery script in your Customizer via Appearance > Customize > Custom > Javascript

    jQuery(document).ready(function($){
    	if( $('body').hasClass('home') ) {
    		$('html').css("overflow", "hidden");
    	}
    });

    You can change the animation effect from fade to sliding, this should remove the 1500×1000 text behind the slide.

    Hope this helps!

    #628413

    alaw
    Participant
    This reply has been marked as private.
    #628577

    Jade
    Moderator

    Hi there,

    Sorry but I am not certain what you are trying to mean? Do you want the space above the slider to be removed?

    If so, you can add this in the CSS customizer:

    .home .entry-content.content p:first-child {
        display: none;
    }