Hey there kulltsb,
Hope you’re well today!
You can remove logo link by making changes to class-header-header_main.php which is located in /wp-admin/themes/customizr/inc/parts/. I strongly suggest not editing theme core files but rather making a copy in your child theme and making the changes there.
Once you do that please open your child theme class-header-header_main.php and go to line 289, it looks like this:
printf( '<a class="site-logo" href="%1$s" title="%2$s">%3$s</a>',
Replace the line with this one:
printf( '<span class="site-logo" href="%1$s" title="%2$s">%3$s</span>',
This should remove the link from your site logo.
As for the border you can hide it by moving the header 5px to the top. To do that please add the following CSS code to Appearance >> Customize >> Advanced Options >> Custom CSS or in the style.css of your child theme:
.tc-header {
margin-top: -5px;
}
This should hide the border above header.
If this doesn’t work could you please post link to your site so I can take a look?
Hope this helps 🙂
Best regards,
Bojan
thank you bojan.
the funny thing is, upon changing the link issue, the top border was removed! THank you so much!