• I have 2 problems currently using customizr theme.

    1. I want to remove the logo link and just have a header image, not a clickable header link.
    Best i could find was a way to change the link, but i want to removed completely: add_filter(‘tc_logo_link_url’, ‘change_site_main_link’);

    2. Despite unchecking the remove top border, there is a white top border displayed above the header image.

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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

    Thread Starter kulltsb

    (@kulltsb)

    thank you bojan.
    the funny thing is, upon changing the link issue, the top border was removed! THank you so much!

    Glad I could help 🙂

    Cheers,
    Bojan

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Customizr Questions’ is closed to new replies.