98ed52fa by Jeff Balicki

eee

1 parent 47fe6ecf
......@@ -16133,7 +16133,7 @@ h2, .h2 {
}
.wp-block-group.register .wpcf7 label.first-name,
.wp-block-group.register .wpcf7 label.last-name {
width: 39% !important;
width: 28.5% !important;
margin-right: 1%;
}
@media (max-width: 768px) {
......@@ -16142,9 +16142,13 @@ h2, .h2 {
width: 100% !important;
}
}
.wp-block-group.register .wpcf7 label.fp_id,
.wp-block-group.register .wpcf7 label.designation {
width: 20% !important;
}
.wp-block-group.register .wpcf7 label.designation {
margin-right: 1%;
}
.wp-block-group.register .wpcf7 label.company-address {
width: 79% !important;
margin-right: 1%;
......@@ -16230,6 +16234,9 @@ h2, .h2 {
margin-left: 17px;
overflow: visible;
}
.wp-block-group.register .wpcf7 textarea.wpcf7-form-control.wpcf7-textarea {
height: 150px;
}
.fieldset-cf7mls-wrapper {
overflow: visible;
......@@ -16324,9 +16331,16 @@ h2, .h2 {
color: #fff;
}
.footer-widget p {
.footer-widget {
width: 39%;
display: inline-block;
position: relative;
right: 0px;
top: 45px;
vertical-align: top;
}
.footer-widget p {
font-size: 14px;
text-align: right;
margin-top: 0px;
color: #fff;
......@@ -16337,10 +16351,25 @@ h2, .h2 {
}
}
.footer-left {
width: 60%;
display: inline-block;
position: relative;
left: 0px;
top: 45px;
}
.footer-left p {
position: relative;
right: 0px;
text-align: left;
margin-top: 0px;
color: #fff;
}
div.social {
position: relative;
right: 0px;
top: 40px;
top: 0px;
width: 300px;
display: block;
float: right;
......
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.
......@@ -26,7 +26,7 @@ $container = get_theme_mod( 'understrap_container_type' );
<footer class="site-footer" id="colophon">
<div class="site-info">
<?php dynamic_sidebar( 'footerfull-left' ); ?>
<?php dynamic_sidebar( 'footerfull' ); ?>
</div><!-- .site-info -->
......
......@@ -10,9 +10,14 @@
}
.footer-widget{
width: 39%;
display: inline-block;
position: relative;
right: 0px;
top: 45px;
vertical-align: top;
p{
position: relative;
right: 0px;
font-size: 14px;
text-align: right;
margin-top:0px;
color: #fff;
......@@ -21,11 +26,26 @@
}
}
}
.footer-left{
width: 60%;
display: inline-block;
position: relative;
left: 0px;
top: 45px;
p{
position: relative;
right: 0px;
text-align: left;
margin-top:0px;
color: #fff;
}
}
div.social{
position: relative;
right: 0px;
top:40px;
top:0px;
width: 300px;
display: block;
float: right;
......
......@@ -482,16 +482,20 @@ h2{
label.first-name,
label.last-name{
width: 39% !important;
width: 28.5%!important;
margin-right: 1%;
@media (max-width: 768px){
width: 100% !important;
}
}
label.fp_id,
label.designation{
width: 20% !important;
}
label.designation{
margin-right: 1%;
}
label.company-address{
width: 79% !important;
margin-right: 1%;
......@@ -565,6 +569,11 @@ h2{
margin-left: 17px;
overflow: visible;
}
textarea.wpcf7-form-control.wpcf7-textarea {
height: 150px;
}
}
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.1.08
Version: 1.1.09
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......
......@@ -160,7 +160,7 @@ if ( ! function_exists( 'understrap_widgets_init' ) ) {
register_sidebar(
array(
'name' => __( 'Footer Full', 'understrap' ),
'name' => __( 'Footer right', 'understrap' ),
'id' => 'footerfull',
'description' => __( 'Full sized footer widget with dynamic grid', 'understrap' ),
'before_widget' => '<div id="%1$s" class="footer-widget %2$s dynamic-classes">',
......@@ -170,5 +170,18 @@ if ( ! function_exists( 'understrap_widgets_init' ) ) {
)
);
register_sidebar(
array(
'name' => __( 'Footer Left', 'understrap' ),
'id' => 'footerfull-left',
'description' => __( 'Full sized footer widget with dynamic grid', 'understrap' ),
'before_widget' => '<div id="%1$s" class="footer-widget footer-left %2$s dynamic-classes">',
'after_widget' => '</div><!-- .footer-widget -->',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
)
);
}
} // End of function_exists( 'understrap_widgets_init' ).
......