Delay in page content fade in

Support Area Forums Umami Delay in page content fade in

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question: http://72.167.246.212/~state38/
  • Author
    Posts
  • #22734
    Aaron DeVandry
    Participant

    Hi Bill. Client loves this theme, which means so do I.

    I wanted the sidebar to remain static on the page without looking like it reloads each time a new page is clicked (without using slow-loading AJAX), and I was able to find the info on that in your very helpful support area already. So that is awesome.

    Similarly, I was hoping there was a way to prevent the delay in each page’s content fading in. Can the content just load immediately when the page is loaded?

    #22735
    Bill Robbins
    Moderator

    Aaron,

    Great question. Thankfully CSS animations make manipulating these animations nice and easy. If you’ll add this to your Custom CSS:

    
    .fadeIn {
      -webkit-animation-name: none;
      animation-name: none;
    }
    

    That will remove the animation from being added to the fadeIn class in the HTML. That should cause the content to appear as it’s loaded and not after a delay.

    Let me know if you have any trouble there.

    Take care,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Delay in page content fade in’ is closed to new replies.