How to change front gif with clouds

belweder6664104

New Member
YetiShare User
Jul 10, 2014
23
0
0
How or where can I change this gif iin front page? I mean this gif with clouds, I just want to change dof for my own but I don't know how or where edit / swap this gif. :ugeek:
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
If its the first one at the top then its in /themes/flow/templates/partial/_header.inc.php

Code:
<img src="<?php echo SITE_THEME_PATH; ?>/frontend_assets/images/home/banner_bg.jpg" data-bgfit="cover" data-bgposition="left top" data-bgrepeat="no-repeat"/>
<div class="tp-caption tp-fade fadeout fullscreenvideo tp-resizeme"
	 data-x="0"
	 data-y="0"
	 data-autoplay="true"                            
	 data-autoplayonlyfirsttime="false"
	 data-nextslideatend="true"
	 data-forceCover="1"
	 data-dottedoverlay="twoxtwo"
	 data-aspectratio="16:9"
	 data-forcerewind="on"
	 style="z-index: 2">
	<video class="video-js vjs-default-skin hidden-xs" loop="loop" autoplay="autoplay" autobuffer="autobuffer" width="100%" height="100%" poster="<?php echo SITE_THEME_PATH; ?>/frontend_assets/images/home/banner_bg.jpg" data-setup="{}">
		<source src='<?php echo SITE_THEME_PATH; ?>/frontend_assets/images/home/banner_video.mp4' type='video/mp4' />
	</video>
</div>
If its the one below
SAFE AND SECURE
Safely store and backup all your essential files. From family photos & videos to important documents, you can rely on us to store all your media securely and forever.
/themes/flow/templates/index.html

Code:
<div class="row">
	<div class="col-md-12 text-center">
		<div class="animated heading-1" data-animation="fadeInUp" data-animation-delay="100"><?php echo t('safe_and_secure', 'Safe and Secure'); ?></div>
		<div class="animated description-1" data-animation="fadeInUp" data-animation-delay="200"><?php echo t('safe_and_secure_description', 'Safely store and backup all your essential files. From family photos & videos to important documents, you can rely on us to store all your media securely and forever.'); ?></div>                
		<div class="animated" data-animation="bounceIn" data-animation-delay="300">
			<img src="<?php echo SITE_THEME_PATH; ?>/frontend_assets/images/safe_secure.png" alt="" class="main-image"/>
		</div>    
	</div>
	<div class="col-md-12 text-center homepage-next-section">
		<a href="#register"><i class="fa fa-chevron-circle-down"></i></a>
	</div>
</div>