• How do I remove “category_title” line from appearing on each category’s page?

    Thanks!

    PS I’m using Make theme

Viewing 11 replies - 1 through 11 (of 11 total)
  • Please post a link to your site and we will try to assist.

    Hi
    I have the same question.
    Here’s a link to the page i’m referring to

    Both the inclusion of the category name and the page title is pushing my content too low.

    In an ideal world i’d get rid of both. ( I have the Child theme installed).
    Thanks in advance

    Thread Starter tbfstudio

    (@tbfstudio)

    Thanks diking, but I can’t send a link because my site is still unpublished on a test site.

    Looking at eadman’s website, it seems that we both share the same problem.

    thanks, tova

    On line 2707 of your style.css file you’ll see this class:

    .section-header {
    margin-bottom: 44px;
    margin-bottom: 4.4rem;
    display: none;
    }

    In a child theme, you could change this to:

    .section-header {
    display: none;
    }

    That will hide the section-header and move everything else up.

    Hi
    Thanks but after changing its still showing.
    The intital code had display set to none and it was ignoring that.

    Hi
    Just figured it.
    Changed the following
    .section-title {
    font-size: 24px;
    font-size: 2.4rem;
    }

    to

    .section-title {
    display: none;
    }

    Thread Starter tbfstudio

    (@tbfstudio)

    Thank you so much — it worked.

    Thread Starter tbfstudio

    (@tbfstudio)

    One more question:
    How do I take out:
    “Built with Make. Your friendly small business site builder.”
    in the footer.

    Thanks in advance, tova

    I’ve removed mine the following way.
    Go to your footer-credits.php
    this line
    $footer_credit = apply_filters( ‘make_show_footer_credit’, false );

    I changed the statement from true to false.
    HTH
    Donna

    Thread Starter tbfstudio

    (@tbfstudio)

    Thanks Donna,

    where do I find footer-credits.php ?
    Is it in the parent theme?
    I work with child theme and put it in the Theme Functions (functions.php)
    but was not successful.

    thanks again, tova

    Thread Starter tbfstudio

    (@tbfstudio)

    A question about page builder.

    When I write in posts I use Page Builder by SiteOrigin.
    However in pages, Page Builder by SiteOrigin option is not available, only the theme’s builder.

    How do I access Page Builder by SiteOrigin in pages.

    thanks in advance.

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

The topic ‘category_title’ is closed to new replies.