Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #241211
    viennayeung
    Participant

    Hello. I have installed Chique Pro theme. I have used CSS to remove the title of each page. Example:
    .page-id-76 .entry-title {
    display: none;
    }

    However, for the Blog page, this CSS does not seem to work. As you can see here (https://stringsbeyond.com/blog/), the word “Blog:” is still showing. What can I do to remove this title?

    My website is https://stringsbeyond.com/

    Many thanks!
    Vi

    #241249
    Skandha
    Participant

    @viennayeung: Hello Vi,
    If you want to remove page titles in all the pages remove all the CSS Code you have added and add the following CSS Code.

    .page .custom-header .entry-title, .blog .custom-header .entry-title {
        display: none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #241250
    viennayeung
    Participant

    Thank you Skandha, it doesn’t seem to work. Most of the page titles can be removed with your CSS except the Blog page one – which is still showing “Blog:”. (and I also don’t know why it has a colon “:” after “blog”… I didn’t add any colon when I created the blog page….) Your CSS also removes the title of the home page, which is not my preference. I am hoping to find a way to remove page title of all pages except the home page.

    Also, I was wondering for the pink “Learn Now” button on the home page (which is “shop now” originally from the theme), is there a way to change the colour of the button from pink to something else? Many thanks!

    #241454
    Skandha
    Participant

    @viennayeung: Hello Vi,

    Go to => Appearance => Customize => Additional CSS and replce the following CSS Code with the code you have added.

    /* To remove all page titles except Homepage titles */
    body:not(.home) .custom-header .entry-title {
        display: none;
    }
    
    /* To change the color of custom header button */
    .custom-header .more-link {
        background-color: #123456;
    }

    You can change the color according to your choice.
    Let me know if this works out!
    Kind Regards,
    Skandha

    #241522
    viennayeung
    Participant

    They both worked great! Thank you so much for your help. Much appreciated. : )

    #241585
    Skandha
    Participant

    @viennayeung: Hello Vi, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/chique/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely
    appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    #241724
    viennayeung
    Participant

    Thanks Skandha! No problem. I have just left a positive review. Many thanks for your help!

    #241734
    Skandha
    Participant

    @viennayeung: Thank you for your wonderful review. Let me know if you have anymore issues and Stay Safe.

    Kind Regards,
    Skandha

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Chique Pro remove page title’ is closed to new replies.