readjust h1 brand name styling with link
This commit is contained in:
parent
a5ad17133e
commit
333f1c90a8
|
@ -6863,6 +6863,9 @@ aside.widget {
|
|||
#wrapper-hero .carousel-inner .textwidget {
|
||||
width: 100%; }
|
||||
|
||||
h1.navbar-brand a {
|
||||
color: inherit; }
|
||||
|
||||
/*!
|
||||
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
|
|
|
@ -6863,6 +6863,9 @@ aside.widget {
|
|||
#wrapper-hero .carousel-inner .textwidget {
|
||||
width: 100%; }
|
||||
|
||||
h1.navbar-brand a {
|
||||
color: inherit; }
|
||||
|
||||
/*!
|
||||
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -48,7 +48,7 @@ $container = get_theme_mod( 'understrap_container_type' );
|
|||
|
||||
<?php if ( is_front_page() && is_home() ) : ?>
|
||||
|
||||
<h1 class="navbar-brand mb-0"><?php bloginfo( 'name' ); ?></h1>
|
||||
<h1 class="navbar-brand mb-0"><a rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
|
|
|
@ -130,4 +130,9 @@ aside.widget{clear:both;}
|
|||
// Makes widgets in hero slider 100% width
|
||||
#wrapper-hero .carousel-inner .textwidget {
|
||||
width:100%;
|
||||
}
|
||||
|
||||
// Adjusting brand link if h1 is used
|
||||
h1.navbar-brand a {
|
||||
color:inherit;
|
||||
}
|
Reference in New Issue