• I’m new to WordPress and wish to do some customisation to my child theme of Kale. Kindly advise on the following:
    1. How to remove welcome title (“Welcome to agarationchef”) on my header image.
    – I commented out these lines from welcome-page.php in welcome-page subdirectory of kale-child but that didn’t resolve my issue

    $config = array(
    /*’menu_label’ => esc_html__( ‘Welcome to Kale’, ‘kale’ ),*/
    /*’page_title’ => esc_html__( ‘Welcome to Kale’, ‘kale’ ),*/
    /* Translators: Theme name */
    /*’welcome_title’ => sprintf( esc_html__( ‘Welcome to %s, version ‘, ‘kale’ ), ‘Kale’ ),*/

    2. How can I have a title in another smaller font, at the corner of the header image?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @agarationchef,

    Thanks for reaching out, and thank you for using Kale- we really appreciate it!

    The simplest way to do this would be to use the existing heading but modify it a bit with CSS. You can change the text under Appearance > Customize > Header Image > Caption Heading, then add the following CSS under Appearance > Customize > Additional CSS:

    .frontpage-banner .caption {
        top: 50px;
        left: 50px;
        transform: none;
        text-align: left;
    }
    .frontpage-banner .caption h2 {
        font-size: 32px;
        font-family: Raleway;
    }
    .frontpage-banner .caption h2:before, .frontpage-banner .caption p {
        display: none;
    }

    I wasn’t sure which corner you were wanting, so this is top left, but you can adjust it as needed.

    Let us know if you run into any trouble or have any additional questions!

    Thread Starter agarationchef

    (@agarationchef)

    Hi @stevenlyrathemes!

    Thanks for getting back so promptly. I’ve a few follow-up questions
    1a. How do I go about changing the caption text from “Welcome to agarationchef” to something else?
    1b. While the CSS indicates top right, the caption text is slightly off top-right, is it possible to denote the location in a more specific manner?
    2. How do I change the font and size of the header “Welcome to agarationchef”

    Pls see attached image for reference https://imgur.com/EoV7jEE

    Thanks and take care

    Sure thing!

    1a. You can change the text under Appearance > Customize > Header Image > Caption Heading.

    1b. This should work if you change text-align from “left” to “right”.

    2. Which of the two “Welcome to agarationchef” headings in the image were you wanting to change this on?

    Thread Starter agarationchef

    (@agarationchef)

    Hi @stevenlyrathemes,

    Thanks for your helpful suggestions. I’ve a few follow-up questions.
    1a. Gotcha
    1b. I changed text-align from “left” to “right”. but the caption heading has moved out of the image.
    2. I wish to change the top header, underlined in blue.
    Pls see the attached link (https://i.imgur.com/NDew90L.png) for queries 1b and 2.

    3. I wish to feature my posts on my index page, so I removed the sidebars and changed the width to 100%. Unfortunately, the 3rd post is not at the intended location (https://i.imgur.com/0npXRu3.png). Is there an additional configuration that I missed? If so, what would it be?

    Thanks Steven for your assistance!

    Hi @agarationchef,

    Thanks for the helpful screenshots!

    1b. It looks like you’ll also need to unset the left property, you can use this or just unset it within your other statement:

    .frontpage-banner .caption {
        left: unset;
    }

    2. You can adjust the font and size of the main heading text like this:

    .logo .header-logo-text {
        font-size: 48px;
        font-family: Lato;
    }

    3. Unfortunately removing the sidebar on the home page isn’t an option that’s included in the free version…the Customizer setting for this is only available in the Pro version. I’m really sorry!
    https://help.lyrathemes.com/article/250-blog-feed-front-page-sidebar-pro-only

    If you need anything else, just let us know…thanks again!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove “Welcome to ” on header’ is closed to new replies.