a1348547 by Jeff Balicki

fonts

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent c448aef1
......@@ -14353,6 +14353,10 @@ p {
font-family: "trade-gothic-next";
}
h1 + p, .h1 + p {
font-size: 20px;
}
#full-width-page-wrapper {
padding-top: 70px;
}
......@@ -14447,6 +14451,11 @@ p {
#main-nav .container .navbar-collapse a {
text-decoration: none;
color: #000000;
font-family: "trade-gothic-next";
}
#main-nav .container .navbar-collapse a:hover {
font-weight: 700 !important;
font-family: "trade-gothic-next";
}
.um:not(.um-um_account_id) {
......@@ -14460,7 +14469,7 @@ p {
margin-bottom: 40px;
}
.um:not(.um-um_account_id) .um-form .um-misc-with-img {
width: 30%;
width: 28%;
display: inline-block;
border-bottom: 0px solid #eee;
margin-bottom: 0px;
......@@ -14470,15 +14479,22 @@ p {
display: none;
}
.um:not(.um-um_account_id) .um-form .um-misc-ul {
width: 50%;
width: 60%;
display: inline-block;
list-style: none;
padding-left: 14px;
vertical-align: top;
}
.um:not(.um-um_account_id) .um-form .um-misc-ul a {
font-size: 16px;
text-decoration: none;
color: #000000;
font-family: "trade-gothic-next";
font-weight: 400;
}
.um:not(.um-um_account_id) .um-form .um-misc-ul a:hover {
font-weight: 700 !important;
font-family: "trade-gothic-next";
}
.current-menu-item a {
......@@ -14486,6 +14502,11 @@ p {
color: #183668 !important;
font-weight: bold;
}
.current-menu-item ul li a {
text-decoration: none !important;
color: #000 !important;
font-weight: 400;
}
.wsmenu-submenu {
display: none;
......@@ -14561,9 +14582,6 @@ p {
margin-bottom: 25px;
font-family: "trade-gothic-next";
}
.hero-content h1 + p, .hero-content .h1 + p {
font-size: 20px;
}
#wrapper-footer {
background-color: #183668;
......
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.
......@@ -108,3 +108,28 @@ if (! is_page('login') && !is_user_logged_in()) {
exit;
}
}
remove_action( 'um_logout_user_links', 'um_logout_user_links', 100 );
add_action( 'um_logout_user_links', 'um_logout_user_links_new', 100 );
/**
* Adds main links to a logout widget
*
* @param $args
*/
function um_logout_user_links_new( $args ) {
?>
<li>
<a href="<?php echo esc_url( um_get_core_page( 'account' ) ); ?>">
<?php _e( 'My Profile', 'ultimate-member' ); ?>
</a>
</li>
<li>
<a href="<?php echo esc_url( add_query_arg( 'redirect_to', UM()->permalinks()->get_current_url( true ), um_get_core_page( 'logout' ) ) ); ?>">
<?php _e( 'Logout', 'ultimate-member' ); ?>
</a>
</li>
<?php
}
......
......@@ -59,6 +59,7 @@ p{
line-height: 24px;
font-family:"trade-gothic-next";
}
h1 + p { font-size: 20px; }
#full-width-page-wrapper{
padding-top:70px;
......
......@@ -58,6 +58,6 @@
margin-bottom: 25px;
font-family:"trade-gothic-next";
}
h1 + p { font-size: 20px; }
}
......
......@@ -88,6 +88,11 @@
a{
text-decoration: none;
color: #000000;
font-family:"trade-gothic-next";
}
a:hover{
font-weight: 700 !important;
font-family:"trade-gothic-next";
}
}
}
......@@ -101,7 +106,7 @@
.um-form {
margin-bottom: 40px;
.um-misc-with-img{
width: 30%;
width: 28%;
display: inline-block;
border-bottom: 0px solid #eee;
margin-bottom:0px;
......@@ -113,32 +118,34 @@
}
}
.um-misc-ul{
width: 50%;
width: 60%;
display: inline-block;
list-style: none;
padding-left: 14px;
vertical-align: top;
a{
font-size: 16px;
text-decoration: none;
color: #000000;
font-family:"trade-gothic-next";
font-weight: 400;
}
a:hover{
font-weight: 700 !important;
font-family:"trade-gothic-next";
}
}
}
}
.current-menu-item { a{text-decoration: underline !important; color: #183668 !important; font-weight: bold;}}
.current-menu-item {
a{text-decoration: underline !important; color: #183668 !important; font-weight: bold;}
ul{
li{
a{text-decoration: none !important; color: #000 !important; font-weight: 400;}
}
}
}
.wsmenu-submenu { display: none; list-style-type:none; padding-left: 15px; }
.current-menu-item .wsmenu-submenu { display:block; }
.current-menu-ancestor .wsmenu-submenu { display:block; }
// .dropdown-menu {
// display: block;
// position:relative !important;
// }
// .dropdown-toggle::after{
// display: none;
// }
// .dropdown-menu{
// all: unset;
// margin-left: 20px;
// }
\ No newline at end of file
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.2.0006
Version: 1.2.0007
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......