c39fcc12 by Jeff Balicki

footer

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 1033ac36
...@@ -17855,6 +17855,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -17855,6 +17855,7 @@ ul.sf_date_field .sf-datepicker {
17855 .side-menu { 17855 .side-menu {
17856 list-style: none; 17856 list-style: none;
17857 margin-top: 14px; 17857 margin-top: 14px;
17858 padding-left: 15px;
17858 } 17859 }
17859 .side-menu li { 17860 .side-menu li {
17860 margin-bottom: 14px; 17861 margin-bottom: 14px;
...@@ -17873,6 +17874,35 @@ ul.sf_date_field .sf-datepicker { ...@@ -17873,6 +17874,35 @@ ul.sf_date_field .sf-datepicker {
17873 width: 100%; 17874 width: 100%;
17874 } 17875 }
17875 } 17876 }
17877 #wrapper-footer {
17878 background-color: #F0F0F0;
17879 padding: 33px 0px;
17880 }
17881
17882 .chw-title {
17883 font-size: 20px;
17884 font-weight: bold;
17885 margin-bottom: 10px;
17886 text-transform: uppercase;
17887 text-align: left;
17888 }
17889
17890 #menu-footer {
17891 list-style: none;
17892 margin-left: 0px;
17893 padding-left: 0px;
17894 }
17895 #menu-footer li a {
17896 color: #000;
17897 font-size: 16px;
17898 line-height: 22px;
17899 font-weight: 400;
17900 text-decoration: none;
17901 }
17902 #menu-footer li a:hover {
17903 color: #fff;
17904 }
17905
17876 .has-blue-color, 17906 .has-blue-color,
17877 .has-blue-color:visited { 17907 .has-blue-color:visited {
17878 color: #0d6efd; 17908 color: #0d6efd;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
1 <?php
2 /**
3 * The template for displaying the footer
4 *
5 * Contains the closing of the #content div and all content after
6 *
7 * @package Understrap
8 */
9
10 // Exit if accessed directly.
11 defined( 'ABSPATH' ) || exit;
12
13 $container = get_theme_mod( 'understrap_container_type' );
14 ?>
15
16 <?php get_template_part( 'sidebar-templates/sidebar', 'footerfull' ); ?>
17
18 <div class="wrapper" id="wrapper-footer">
19
20 <div class="<?php echo esc_attr( $container ); ?>">
21
22 <div class="row">
23
24 <div class="col-md-6 col-sm-12">
25
26 <footer class="site-footer" id="colophon">
27
28 <div class="site-info">
29
30 <?php dynamic_sidebar( 'custom-footer-left-widget' ); ?>
31
32 </div><!-- .site-info -->
33
34 </footer><!-- #colophon -->
35
36 </div><!-- col -->
37 <div class="col-md-6 col-sm-12">
38
39 <footer class="site-footer" id="colophon">
40
41 <div class="site-info">
42
43 <?php dynamic_sidebar( 'custom-footer-right-widget' ); ?>
44
45 </div><!-- .site-info -->
46
47 </footer><!-- #colophon -->
48
49 </div><!-- col -->
50
51 </div><!-- .row -->
52
53 </div><!-- .container(-fluid) -->
54
55 </div><!-- #wrapper-footer -->
56
57 <?php // Closing div#page from header.php. ?>
58 </div><!-- #page -->
59
60 <?php wp_footer(); ?>
61
62 </body>
63
64 </html>
65
...@@ -8,3 +8,4 @@ require_once 'search-extras.php'; ...@@ -8,3 +8,4 @@ require_once 'search-extras.php';
8 require_once 'disable-comments.php'; 8 require_once 'disable-comments.php';
9 require_once 'blocks.php'; 9 require_once 'blocks.php';
10 require_once 'side-menu.php'; 10 require_once 'side-menu.php';
11 require_once 'widgets.php';
......
1 <?php
2 function wpb_widgets_init() {
3
4 register_sidebar( array(
5 'name' => 'Custom Footer Left Widget Area',
6 'id' => 'custom-footer-left-widget',
7 'before_widget' => '<div class="chw-widget">',
8 'after_widget' => '</div>',
9 'before_title' => '<h2 class="chw-title">',
10 'after_title' => '</h2>',
11 ) );
12
13 register_sidebar( array(
14 'name' => 'Custom Footer Right Widget Area',
15 'id' => 'custom-footer-right-widget',
16 'before_widget' => '<div class="chw-widget">',
17 'after_widget' => '</div>',
18 'before_title' => '<h2 class="chw-title">',
19 'after_title' => '</h2>',
20 ) );
21
22 }
23 add_action( 'widgets_init', 'wpb_widgets_init' );
...\ No newline at end of file ...\ No newline at end of file
...@@ -12,4 +12,5 @@ body{ ...@@ -12,4 +12,5 @@ body{
12 @import "search_results"; 12 @import "search_results";
13 @import "front_page"; 13 @import "front_page";
14 @import "page"; 14 @import "page";
15 @import "footer";
15 16
......
1 #wrapper-footer{
2 background-color: #F0F0F0;
3 padding: 33px 0px;
4 }
5
6
7 .chw-title{
8 font-size: 20px;
9 font-weight: bold;
10 margin-bottom: 10px;
11 text-transform: uppercase;
12 text-align: left;
13 }
14 #menu-footer{
15 list-style: none;
16 margin-left: 0px;
17 padding-left: 0px;
18 li{
19 a{
20 color: #000;
21 font-size: 16px;
22 line-height: 22px;
23 font-weight: 400;
24 text-decoration: none;
25 &:hover{
26 color: #fff;
27 }
28 }
29 }
30 }
...\ No newline at end of file ...\ No newline at end of file
...@@ -196,6 +196,7 @@ h1+p { ...@@ -196,6 +196,7 @@ h1+p {
196 .side-menu{ 196 .side-menu{
197 list-style: none; 197 list-style: none;
198 margin-top: 14px; 198 margin-top: 14px;
199 padding-left: 15px;
199 li{ 200 li{
200 margin-bottom: 14px; 201 margin-bottom: 14px;
201 202
......