-
AuthorPosts
-
October 15, 2015 at 3:06 pm #627007
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.
October 15, 2015 at 4:26 pm #627121October 15, 2015 at 10:41 pm #627486Thanks for responding. The setting is currently on Full-Screen.
October 15, 2015 at 10:46 pm #627489Hi 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 credentialsDon’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!
October 16, 2015 at 10:14 am #628058This reply has been marked as private.October 16, 2015 at 12:05 pm #628194Hi 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!
October 16, 2015 at 3:15 pm #628413This reply has been marked as private.October 16, 2015 at 6:46 pm #628577Hi 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; }
-
AuthorPosts