Slider Heading and Description

Discussion in 'ColorWay WordPress Theme' started by 1stopnonprofitshop, Nov 15, 2016.

  1. 1stopnonprofitshop

    1stopnonprofitshop Guest

    Joined:
    Jul 18, 2014
    Messages:
    276
    Likes Received:
    0
    How do you have the slider heading and description show up immediately and not a few seconds after the image shows up?

    theme1.1stopnonprofitshop.com
     
  2. nitin

    nitin Guest

    Hi,

    Greetings from InkThemes,

    To turn off the animations, just paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .salesdetails{
     /*CSS transitions*/
     -o-transition-property: none !important;
     -moz-transition-property: none !important;
     -ms-transition-property: none !important;
     -webkit-transition-property: none !important;
     transition-property: none !important;
     /*CSS transforms*/
     -o-transform: none !important;
     -moz-transform: none !important;
     -ms-transform: none !important;
     -webkit-transform: none !important;
     transform: none !important;
     /*CSS animations*/
     -webkit-animation: none !important;
     -moz-animation: none !important;
     -o-animation: none !important;
     -ms-animation: none !important;
     animation: none !important;
     }
    
    Hope this helps...!

    Thanks & Regards!
    Nitin
    InkThemes.com
     

Share This Page