• Resolved dspakes

    (@dspakes)


    I’d like to “at the very least” hide the page title in the image which I refer to as the header of the About page.

    Actually, I’d rather insert the same image “logo” there that I have on the home page. And if you also know how to move it to the center, that’d be ever better. ??

    Thanks!

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

Viewing 9 replies - 1 through 9 (of 9 total)
  • Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    It looks like the link to your page isn’t loading, with an ‘ERR_NAME_NOT_RESOLVED’ error. Has this page been set up with your host and their nameservers?

    Thread Starter dspakes

    (@dspakes)

    I’m sorry, I should have updated the question after I migrated the site to its permanent location. It is now: https://www.boldcultivation.com

    Thanks for taking a look at it and if you have any advice, that would be much appreciated.

    Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    The theme’s developers may be able to direct you to an easier way, but this is possible with CSS. For the code below, add it to the “Additional CSS” section of the customizer.

    First, hide the “About” text.

    .page-title-container {
        visibility: hidden;
    }

    Next, add your logo and center it (that is based on the current image you had displayed on the home page):

    .hero .hero-inner {
        width: 100%;
        background-image: url("https://boldcultivation.com/wp-content/uploads/2018/12/bold-cultivation-logo-lowopacity-web-1-300x300.png");
        background-position: center;
        background-repeat: no-repeat;
    }
    Thread Starter dspakes

    (@dspakes)

    OMG Thank you so much! That’s awesome!

    Now that I’ve made the adjustment you helped me with all is well. BUT. Look at my home page. So what happened next is that I had to delete the image on the home page, which I got to appear by going to: Customizing/Widgets/Hero and linking. But when I did that, my header area where the image is, got short and couldn’t see the logo which is centered. So I forced a period in there to hold it open, but I don’t want to leave it of course. Any ideas on that one?

    Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    Great, I’m glad to hear that worked! The current height of your heading area (where the period is) is set to 67px. In order to keep that, try removing the period and adding this CSS:

    h2.widget-title {
        height: 67px;
    }

    You’ll just have to make sure that doesn’t affect anything else you don’t want it to.

    Thread Starter dspakes

    (@dspakes)

    I don’t want to keep that. I want it to look exactly like the About page. How can I accomplish this?

    And how can I get the video to work instead of an image?

    Thanks again. I know I’m being a pain!

    Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    By keeping “that,” I meant the height of the heading area. Did you try that code to see if it helped?

    I’m not sure about the video since I don’t have any experience with the theme. Hopefully the developers may have some suggestions when it comes to the video.

    No worries, you’re not a pain. That’s what the forums are for. ??

    Thread Starter dspakes

    (@dspakes)

    Oh yes! I adjusted the height until I got the site to behave on desktop, Android and iPhone. That was VERY helpful. I’ll mark this solved. ??

    I don’t even know how to ask the developers, I have SO much to learn.

    Thanks,
    Donna

    Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    I’m glad to hear that worked! I see you created a new thread in the theme’s support forum. That’s really the best place to ask and hopefully they will see it and can provide some direction.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Remove Page Title from Child Pages’ is closed to new replies.