• Hi, i have a problem with the fact that the page title is shown 2 times actually 3 times include the H1 tag. But I want only 1 time. I have tried to add this code in the WYSIWYG editor but its not working…

    <style>
    .entry-title {display:none;}
    </style>

    do you guys have other solutions? Plus I want the GREY colour which the page title is shown on in a different colour, how do I do that?

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

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hello Johnhendriks,

    The class you are applying is not present on the on the page thats why your css is not working.
    Do you want to show the title which is inline with search bar and hide all the other two then follow the below instructions:-
    1) To remove sidebar title you have to remove title from backend sidebar widget. Then automatically it will be removed.
    2) TO remove the title above the post the add this css
    .blog_single_post h2 {
    display: none;
    }
    But this will remove title of all the post from all the pages.

    If you want to hide the title which is inline with search bar the use below css:-
    .page_head{
    display:none;
    }
    and for widget follow the above given process.

    Which text you want to make grey can you please explain it or mention the text here.

    Best Regrds

    Sam

    (@soumendra)

    Hello @johnhendriks,

    Can you please let us know which title you want to keep in the site so that we can help you removing the other two for the site.

    Also, for adjusting the title background color, you need to add this CSS to your Custom CSS/ Additional CSS:

    .hero-unit-small {
        background: #DB2723;
    }

    You can adjust the color as per your requirement.

    Hope that helps.

    Thank you.

    Thread Starter johnhendriks

    (@johnhendriks)

    Hi Sam, I want to remove the title which is not in the search bar but the one under it. of every page (I hope that doesn’t effect google SEO). I tried to add this code but the background colour where also the search bar is in, is not changing? greet John @soumendra

    Sam

    (@soumendra)

    Hello @johnhendriks,

    Just to inform you that if you remove the title which is on the H1 tag, that will cause issue in SEO.

    So, It is recommended not to remove that one from the posts.

    However, can remove the H2 tag just above it by using this code:

    .blog_single_post > h2:first-child {
        display: none;
    }

    For the title background, you can try adding this instead for a better result:

    .hero-unit-small {
        background: #DB2723 !important;
    }

    Feel free to ask if you need anything else.

    Thank you.

    Thread Starter johnhendriks

    (@johnhendriks)

    Hi Sam,
    I tried the H2 but don’t work, the colour change works! Thanks.
    but I want the H2 Title of the page that is clickable gone.
    look at: https://serveyourheart.nl/clean-9-fit-c9/

    thanks @soumendra

    Thread Starter johnhendriks

    (@johnhendriks)

    Aha i see, the page title from the blog pages are gone. but I want the ones gone of the pages aswel.. thanks in advance.

    Sam

    (@soumendra)

    Hello @johnhendriks,

    Then you need to replace this code:

    .blog_single_post > h2:first-child {
        display: none;
    }

    With this for a better result:

    .blog_single_post > h2:first-of-type {
        display: none;
    }

    Hope that helps.

    Thank you.

    Thread Starter johnhendriks

    (@johnhendriks)

    Thank you so much, Do you also know how to put a background on the widget area so the widget items have a grayish background? Would love to hear from you. Thanks.
    @soumendra

    Sam

    (@soumendra)

    Hello @johnhendriks,

    For adjusting the sidebar background you can adding this CSS:

    .span4.sidebar {
        background: #6EBB25;
    }

    Hope that helps.

    Thank you.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Page title problem’ is closed to new replies.