Hello,
If you wish to remove the home link from the site title, within the logo-title.php change the following code:
<h1 class="site-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php echo wp_kses_post( get_bloginfo( 'name' ) ); ?></a>
</h1>
To this:
<h1 class="site-title">
<?php echo wp_kses_post( get_bloginfo( 'name' ) ); ?>
</h1>
If you wish to make the link only clickable on certain pages, you’ll need to employ the usage of conditional codes, https://codex.wordpress.org/Conditional_Tags
Thanks!
Cool, thanks. The color change though…Do you know why? Am I able to keep the same color…? Is it now kind of black?
I’m a beginner in coding.
See the site title : http://lareleveinconnue.com/
It was white before…
Thanks for your help, I appreciated it.
#masthead .site-title {
color: #fff;
}
add that to your css