File Editor
Directories:
.. (Back)
css
fonts
functions
images
js
languages
Files:
404.php
about-section.php
breadcrumbs.php
comments.php
content-none.php
content-posts-home.php
content-posts.php
content-single.php
content.php
contentboxes-section.php
copyright.php
cta-section.php
features-section.php
footer.php
fromblog-section.php
functions.php
getintouch-section.php
getstarted-section.php
header.php
image.php
index.php
license.txt
owlpost-info.php
page-fullwidth.php
page-left-sidebar.php
page-right-sidebar.php
page.php
post-formats.php
post-info.php
post-meta.php
post-nav.php
readme.txt
services-section.php
sidebar-footer.php
sidebar.php
single.php
social-section.php
style.css
title-section.php
top-header.php
Create New File
Create
Edit File: cta-section.php
<?php /** * @package Modality */ $modality_theme_options = modality_get_options( 'modality_theme_options' ); $cta_bg_image = $modality_theme_options['cta_bg_image']; if ($cta_bg_image !='') { ?> <div class="cta" style="background: url(<?php echo esc_url($cta_bg_image); ?>) 50% 0 no-repeat fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;"> <?php } else { ?> <div class="cta"> <?php } ?> <div id="cta-wrap"> <div> <h4 class="wow bounceInRight" data-wow-delay="0.1s"><?php echo esc_attr($modality_theme_options['cta_section_sm_header']); ?> </h4> <h2 class="boxtitle wow bounceInLeft" data-wow-delay="0.1s"><?php echo esc_attr($modality_theme_options['cta_section_big_header']); ?></h2> <a class="content-btn" href="<?php echo esc_url($modality_theme_options['cta_button_url']); ?>"><?php echo esc_attr($modality_theme_options['cta_button_text']); ?></a> </div> </div> </div>
Save Changes
Rename File
Rename