Reply To: Email defaulting to mailchimp

Support Forums Gris – HTML Template Email defaulting to mailchimp Reply To: Email defaulting to mailchimp

#4930
CreaboxThemes
Keymaster

Hi,

1. About the first point, I don’t understand good the problem. Can you explain it better? And please, can you sen me your url to check it?

2. If you want to add buttons to control the video, you have to follow the next steps:

  • In the file video_youtube.js, you have to add the next code after the line jQuery("#bgndVideo").mb_YTPlayer();:
    jQuery("#stop_video").click(function(){
         jQuery("#bgndVideo").pauseYTP();
    });		
    jQuery("#play_video").click(function(){
         jQuery("#bgndVideo").playYTP();
    });
    jQuery("#mute_video").click(function(){
         jQuery("#bgndVideo").muteYTPVolume();
    });
    jQuery("#unmute_video").click(function(){
         jQuery("#bgndVideo").unmuteYTPVolume();
    });
  • Then, add the next code in your main file index.html, after the video is loaded <a id="bgndVideo" ...></a>:
    <!-- ==============================================
    CONTROL VIDEO
    =============================================== -->
    <div id="control_video">
         <button id="stop_video"><span aria-hidden="true" data-icon="&#x60;"></span></button>
         <button id="play_video"><span aria-hidden="true" data-icon="&#x45;"></span></button>
         <button id="mute_video"><span aria-hidden="true" data-icon="&#x78;"></span></button>
         <button id="unmute_video"><span aria-hidden="true" data-icon="&#x7a;"></span></button>
    </div>
  • At the end, add the next code in the css file:
    #control_video{
         position: absolute; 
         z-index: 10;
         bottom: 20px;
         right: 20px;
    }
    
    #control_video button{
         width: 40px;
         height: 40px;
         line-height: 40px;
         background: none;
         border: 1px solid #fff;
         color: #fff;
         border-radius: 50%;
         font-size: 1em;
         text-align: center;
         padding: 0px;
         margin: 0px 5px;
         opacity: 0.5;
         cursor: pointer;
         -webkit-transition: all 0.35s ease-out;
         -moz-transition: all 0.35s ease-out;
         -ms-transition: all 0.35s ease-out;
         -o-transition: all 0.35s ease-out;
         transition: all 0.35s ease-out; 			
    }
    
    #control_video button:hover{
         opacity: 1;
    }
    
    #control_video button#stop_video,
    #control_video button#play_video {
         font-size: 1.5em;
         vertical-align: bottom;
    }

Regards